.email-check-prompt {
    display: none;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}

.email-check-prompt i {
    font-size: 24px;
    color: #00cfc9;
    margin-bottom: 10px;
}

.email-check-prompt p {
    margin-bottom: 10px;
}

.email-check-prompt .email-address {
    font-weight: bold;
    color: #333;
}
.container {
    height: 100%;
    width: 100%;
    padding: 5vh;
    box-shadow: 1px 1px 10px rgb(196, 196, 196);
}
.login-content {
    text-align: center;
    line-height: 2;
}
.login-content h2 {
    font-size: 2rem;
}
.login a {
    color: black;
    text-decoration: none;
}
p {
    font-size: 1rem;
}
form {
    margin-top: 5vh;
}
#email {
    height: 6vh;
    width: 100%;
    border-radius: 7px;
    margin-top: 1vh;
    border: none;
    padding-left: 3vh;
    border: 1px solid gray;
}
.reset-container {
    display: flex;
    justify-content: center;
    margin-top: 3vh;
}
#reset-password {
    height: 6vh;
    width: 70%;
    font-weight: 200;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
}
.error {
    margin-top: 1vh;
    color: red;
}
.links{
    text-align: center;
    margin-top: 3vh;
}
.links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        height: 50vh;
        padding: 3vh;
    }
    .login-content {
        line-height: 1;
    }
    .login-content h2 {
        font-size: 1.4rem;
        margin-bottom: 2vh;
    }
    #reset-password {
        height: 5vh;
        font-size: .8rem;
    }
    .links {
        margin-top: 1vh;
    }
}