/* config */
@font-face {
    font-family: 'gurajada';
    src: url('Gurajada-Regular.ttf');
}

:root{
    --color1:#7DA9FF;
    --color2:#427CEC;
    
}
*{
    margin: 0;
    padding: 0;
    font-size: 20px; 
    font-family: 'gurajada';
    color: var(--color2);
}

.background{
    position:fixed;
    z-index:-10;
    top:0;
    left:0;
    opacity:0.25;
    width:100vw;
    height:100vh;
}

/* Styling */ 


form{
    max-width:660px;
    height:90vh;
    box-sizing:border-box;
    position:absolute;
    left: 50%;
    top:50%;
    transform:translate(-50%,-50%);
    background-color:white;
    border: 2px solid #444;
    border-radius:25px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

form .nothing{
    width:100%;
    height:5%;
    border-top-left-radius:23px;
    border-top-right-radius:23px;
    background-color: var(--color1);
}

form img{
    width:50%;
}


form .form{
    display: flex;
    flex-direction:column;
    width:90%;
    height: 40%;
    margin-top: 7%;
    justify-content: space-between;
}

.input{
    height:60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1em;
}
.input label{
    font-size: 1em;
    text-transform: uppercase;
    font-weight: bold;
}

.input input{
    color:black;
    padding-left:20px;
    font-size:1.2em;
    outline:none;
    border: none;
    border-bottom: 1px solid black;
}

.input input::placeholder{
    font-size:.8em;
}

form button{
    /* position:absolute; */
    bottom:0;
}

/* .input input[type="email"]{
    margin-bottom: 5%;
} */

/* form button{
    background-color: var(--color2);
    color:white;
    font-size:1.7em;
    border-radius:25px;
    border:3px solid transparent;
    box-sizing: border-box;
}
form button:hover{
    border:3px solid white;
} */

@media screen and (max-width:576px){
    form img{
        width:90%;
    }
}
