#content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#login-form {
    /* margin-top: var(--header-height); */
    position: relative;

    width: 50vw;
    height: 50vh;

    background-color: rgba(255, 255, 255, .1);

    display: flex;
    flex-direction: column;
    gap: 4vh;

    padding: 2vw;
    border-radius: .5vw;
}

#login-form label {
    position: relative;
    
    width: 100%;
    max-height: 6vw;

    display: flex;
    flex-direction: column;
    gap: 1vh;
}

#login-form label span {
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    font-size: 3vh;
    color: #ddd;
}

#login-form label input {
    width: 100%;
    height: 4vw;

    padding: 1vw;

    border: none;
    outline: none;
    background-color: white;

    font-family: "Poppins", sans-serif;
    font-size: 3vh;

    border-radius: .25vw;
}

#see-password {
    position: absolute;
    transform: translateY(1vw);
 
    bottom: 0;
    right: 0;

    width: 4vw;
    height: 4vw;

    display: flex;
    justify-content: center;
    align-items: center;

    padding: 1vw;

    cursor: pointer;

    border: none;
    outline: none;
    
    background-color: transparent;
}

#see-password img {
    width: 100%;
    height: 100%;
}


#submit {
    position: absolute;
    bottom: 2vw;
    right: 2vw;

    height: 3vw;
    width: 11vw;


    font-size: 1.75vh;
    font-weight: bold;
    font-family: "Poppins", sans-serif;

    color: #ddd;
    background-color: green;

    border-radius: .3525vw;

    outline: none;
    border: none;

    cursor: pointer;

    transition: color .3s, transform .3s;
}

#submit:hover {
    color: #eee;
    transform: scale(105%);
}