v*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}


body{

    min-height:100vh;

    background-image:url("/static/images/background.png");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

}



.login-container{

    width:90%;

    max-width:420px;

    text-align:center;

    margin-top:-20px;

}



.logo{

    width:260px;

    margin-bottom:35px;

}



.form-group{

    text-align:left;

    margin-bottom:25px;

}



label{

    color:white;

    font-size:25px;

    font-weight:bold;

    text-shadow:2px 2px 3px black;

}



.input-box{

    display:flex;

    align-items:center;

    background:white;

    height:60px;

    border-radius:35px;

    border:4px solid black;

    margin-top:8px;

    padding:0 20px;

}



.input-box span{

    font-size:25px;

    margin-right:15px;

}



.input-box input{

    border:none;

    outline:none;

    width:100%;

    font-size:18px;

}



.btn-login{

    margin-top:25px;

    width:80%;

    height:65px;

    border-radius:35px;

    border:4px solid black;

    background:#FFD700;

    color:black;

    font-size:28px;

    font-weight:bold;

}