.forgot-password-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: var(--primary-gradient);
}

.forgot-password-form {
    background: white;
    border: 2px solid black;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px var(--shadow-color);
    width: 100%;
    max-width: 400px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.form-group input[type="email"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color var(--transition-speed);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.success-message {
    color: #2f855a;
    background: #c6f6d5;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.error {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.back-to-login {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--primary-color);
    text-decoration: none;
}

.back-to-login:hover {
    text-decoration: underline;
}

.instructions {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.reset-link {
    word-break: break-all;
    color: var(--primary-color);
    text-decoration: none;
}

.reset-link:hover {
    text-decoration: underline;
}