
section{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    min-height: 100vh;
    background-image: url("/static/img/background.7ad3d8df4c83.jpg");
    background-position: center;
    background-size: cover;
}

.form-box{
    width: 400px;
    height: 450px;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;

}

h2{
    font-size: 2em;
    color: black;
    text-align: center;
}

.inputbox{
    width: 310px;
    border-bottom: 2px solid #fff;
}

.small-spacing{
    margin: 15px 0px;
}

.large-spacing{
    margin: 30px 0px;
}

.inputbox input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    padding:0 35px 0 5px;
    color: black;
}

.remember{
    margin: -5px 0 15px ;
    font-size: .9em;
    color: black;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

input[type="checkbox"]{
    order: -1;
}

button{
    width: 100%;
    height: 40px;
    border-radius: 40px;
    background: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1em;
    font-weight: 600;
}

.forget{
    font-size: .9em;
    color: black;
    text-align: center;
    margin: 25px 0 10px;
}

.forget a{
    text-decoration: none;
    color: black;
    font-weight: 600;
}

.forget a:hover{
    text-decoration: underline;
}

.login-form-error{
    max-width: 310px;
}
