/* Forgot Password Page Styles */
.forgot-password-page {
    min-height: 100vh;
    background-color: #f5e6d3;
    display: flex;
    flex-direction: column;
}

/* Header */
.forgot-password-header {
    background: white;
    border-bottom: none;
    padding: 16px 20px;
}

.forgot-password-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
}

.menu-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    margin-left: -8px;
}

.menu-icon span {
    width: 24px;
    height: 2px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

.forgot-password-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.forgot-password-logo .logo-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.forgot-password-logo .logo-text {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

/* Main Content */
.forgot-password-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.forgot-password-container {
    width: 100%;
    max-width: 440px;
}

.forgot-password-card {
    background: #faf9f6;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.forgot-password-title {
    font-size: 28px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 16px;
    color: #333;
}

.forgot-password-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    text-align: left;
    line-height: 1.5;
}

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

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

.form-group input {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
    background-color: #f5f5f5;
}

.form-group input:focus {
    outline: none;
    border-color: #4a90e2;
    background-color: white;
}

.form-group input::placeholder {
    color: #999;
}

/* Reset Button */
.btn-reset {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-reset:hover {
    background-color: #222;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-reset:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.error-message {
    font-size: 14px;
    color: #ff4444;
    text-align: left;
    padding: 8px 0;
}

.success-message {
    font-size: 14px;
    color: #2e7d32;
    text-align: left;
    padding: 8px 0;
}

.back-to-login {
    margin-top: 24px;
    text-align: center;
}

.back-link {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #333;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 480px) {
    .forgot-password-card {
        padding: 32px 24px;
    }

    .forgot-password-title {
        font-size: 24px;
    }

    .forgot-password-description {
        font-size: 14px;
    }

    .forgot-password-main{
        align-items: flex-start;
    }
}

