*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: url('../assets/badge.png') no-repeat;
    background-size: cover;
    background-position: center;
    margin-top: 2vh;
    margin-bottom: 2vh;
}
.form-box{
    width: 550px;
    height: 450px;
    position: relative;
    background-color: rgb(16, 27, 48);
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter:blur(5px) ;
}
h2{
    font-size: 3em;
    color: #171d4e;
    text-align: center;
    font-weight: bolder;
    font-family: 'Courier New', Courier, monospace;

}
.input-box{
    position: relative;
    margin: 30px 0px ;
    width: 450px;
    background-color: rgb(31, 35, 95);
    border-bottom: 3px solid #d5d8e9;
}
.input-box label{
    position: absolute;
    left: 5px;
    top:50%;
    transform: translateY(-45%);
    font-size: 2em;
    color: #d8dbf1;
    pointer-events: none;
    transition: 0.5s ease-in-out;
    font-family: sans-serif;
    font-weight: bold;
}
input:focus~label,input:valid~label{
    top: -10px;
    color: #000;
}
.input-box input{
    width: 100%;
    height: 50px;
    background: transparent;
    outline: none;
    border: none;
    padding: 0 35px 0 5px;
    font-size: 1em;
    color: #fff;
    border-bottom: 3px solid #171d4e;
}
.forget{
    margin: -15px 0 30px;
    font-size: .9em;
    color: #171d4e;
    display: flex;
    justify-content: center;
}
.forget label a{
    columns: #171d4e;
    text-decoration: none;
}
.forget label a:hover{
    text-decoration: underline;
    text-underline-offset: 2px;
}
.forget label a input{
    margin-right: 3px;
    transform: translateY(2px);
    background: transparent;
}
.btn-login {
    width: 100%;
    height: 60px;
    border-radius: 20px;
    background: #fff;
    outline: none;
    border: none;
    font-family: 'Courier New', Courier, monospace;
    font-size: 2em;
    font-weight: 600;
    cursor: pointer;
}
.btn-login:hover{
    opacity: .7;
}
.register{
    margin: 15px 0 30px;
    font-size: .9em;
    display: flex;
    justify-content: center;
}
.register label a{
    color: #171d4e;
    text-decoration: none;
    font-weight: 600;
}
.register label a:hover{
    text-decoration: underline;
    text-underline-offset: 2px;
}
.input-box i{
    position: absolute;
    top: 20px;
    right: 8px;
    color: #171d4e;
    font-size: 1.2em;
}