.forgot-password-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70vh;
    background-color: var(--body-back-color);
}

.forgot-password-section .logo{
    max-width: 150px;
    margin-bottom: 20px;

}
.forgot-password-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-purple);
}

.forgot-password-container {
    text-align: center;
    min-width: 320px;
    padding: 20px;
    background-color: var(--back-color-main);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.168);
}

.forgot-password-container p {
    margin-bottom: 20px;
    max-width: 320px;
    text-align: center;
    color: var(--secondary-text);
}

.forgot-password-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.forgot-password-form label {
    font-weight: bold;
}

.forgot-password-form input[type="email"] {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: none;
    box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.177);
    border-radius: 10px;
    background-color: transparent;
    font-size: 16px;
}
.forgot-password-form input[type="email"]:focus {
    outline: none;
    box-shadow: 0px 0px 3px 1px var(--dark-purple);
}

.forgot-password-form button {
    padding: 10px 15px;
    border-radius: 10px;
    width: 100% !important;
}
@media (max-width: 768px) {
    .nav-links {
        top: 30px;
    }
}
