.login-page{
    height: 100vh;
    background-color: var(--active-color-top);
}

.login-w{
    display: flex;
    justify-content: center;
    width: 40%;
    margin: 0 auto;
    flex-direction: column;
    color: white;
    background: var(--main-bright-color);
    border-radius: 10px;
    padding: 20px;
}

.login-l{
    color: white;
    font-size: 18px;
    padding-bottom: 10px;
}

.login-form{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 15px;
}

.input-field label{
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.input-field input{
    width: 100%;
    padding: 20px 32px;
    border: 1px solid black;
    border-radius: 10px;
    background: #f8f9f8;
    color:black;
    font: inherit;
}

.input-field input:focus{
    outline: 2px solid black;
    outline-offset: 2px;
}

.login-btn{
    align-self: start;
    width: 100%;
    padding: 20px 32px;
    border: 1px solid black;
    border-radius: 20px;
    background: #f8f9f8;
    color:black;
    font-weight: 600;
    cursor: pointer;
}

.login-btn:hover{
    background-color: var(--active-color-top);
}


.login-form p{
    font-size: 15px;
    color: white;
}

.login-form a{
    color: var(--active-color-top);
    cursor: pointer;
}

.login-form a:hover{
    color:blue;
}

#back-btn{
    color: white;
    font-size: 20px;
    margin: 0 auto ;
    cursor: pointer;
}

#back-btn:hover{
    color: black;
}