@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    width: 100vw;
    height: 100vh;
    display:flex;
    flex-direction: column;
    
    align-items: center;
    background-color: #9AEBA3;
    
}

.code{
    width: 500px;
    height: 500px;

    background-color: #45C4B0;
    padding: 20px;
    
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;

}

.output{

    width: 500px;
    height: 500px;
    background-color: #45C4B0;
    padding: 20px;
    position: relative;
   
    box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;

}

.output img{

    width: 100%;
    height: 100%;
    

}

.frm-group{
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;



}
.frm-single-group{

    margin-bottom: 10px;
    display: flex;
    gap: 25px;

}

input[type='text'],select{
    height: 30px;
    padding-left: 10px;
    outline: none;
    border: 1px solid #ccc;
}

button{
    width: 200px;
    height: 40px;
    background-color: #E3371E;
    color: white;
    border: none;
    font-weight: 400;
    font-size: 18px;

}

#loading{
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #3742fa;
    top: 0;
    left: 0;

    display:none;
    justify-content: center;
    align-items: center;
    flex-direction: column;



}

#loading p{
    color: white;
    font-size: 15px;
    margin-top: 10px;
}

#spinner{

    width: 100px;
    height: 100px;
    
    /* position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%); */

    border: 5px solid #7d7dfa;
    border-radius: 50%;
    border-top-color:white;
    animation: spin 1s ease-in-out infinite;



    


}

@keyframes spin{

    from{
        transform: rotate(0deg);

    }

    to{
        transform: rotate(360deg);
        
    }
}

#btn-save{
    background-color:#DBF227;
    display: inline-block;
    width: 200px;
    height: 40px;
    color:black;
    font-weight: 400;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
  }