/* Main Content Styles */
.main-content {
    min-height: calc(100vh - 300px);
    padding: 40px 0;
    background: #f8f9fa;
}

.forgot-password-container {
    max-width: 420px;
    margin: 0 auto;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.forgot-password-container h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 600;
}

.description {
    text-align: center;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 24px;
}

/* Form Styles */
.forgot-password-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #555;
    font-weight: 500;
}

.form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-group input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgb(95 147 95 / 10%);
    outline: none;
}

/* Submit Button */
.submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.submit-button:hover {
    background: var(--primary-color-dark, #3a723a);
    transform: translateY(-1px);
}

.submit-button:active {
    transform: translateY(0);
}

/* Back to Login Link */
.back-to-login {
    margin-top: 24px;
    text-align: center;
}

.back-to-login a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-to-login a:hover {
    text-decoration: underline;
}

.back-to-login i {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 480px) {
    .forgot-password-container {
        margin: 0 16px;
        padding: 24px;
    }

    .forgot-password-container h1 {
        font-size: 20px;
    }

    .submit-button {
        padding: 12px;
        font-size: 13px;
    }
} 