@font-face {
    font-family: Nunito-bold;
    src: url('/fonts/Nunito/static/Nunito-Bold.ttf');
}
@font-face {
    font-family: Nunito;
    src: url('/fonts/Nunito/static/Nunito-Regular.ttf');
}

body{
    margin: 0;
    font-family: Nunito;
    background-color: white;
    color: #222;
}
.form{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

form{
    width: 500px;
    padding: 50px;
    border-radius: 5px;
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.3);
    text-align: center;
    background-color: whitesmoke;
}
form h2{
    font-size: 40px;
    font-family: Nunito;
    margin: 0;
}
form input,form select{
    width: 400px;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-top: 15px;
    font-family: Nunito;
    background: none;
    color: black;
}

form #show_pass{
    height: 12px;
    width: 12px;
}
form button{
    width: 400px;
    height: 40px;
    color: white;
    margin-top: 15px;
    background-color: blueviolet;
    border: none;
    border-radius: 5px;
    font-family: Nunito;
}
form img{
    height: 100px;
    width: 100px;
    margin-top: 15px;
    border-radius: 50%;
}

@media (max-width:768px){
    form{
        width: 95%;
        height: auto;
        padding: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    form input, form select, form button{
        width: 90%;
    }
    .form{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
    }
}