/* Forgot Password Page Styles */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px;
}

.forgot-password-container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
}

.forgot-password-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.logo-container {
    text-align: center;
    margin-bottom: 30px;
}

.logo {
    max-width: 180px;
    height: auto;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    background: #f8fafc;
    border-radius: 12px;
    padding: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.language-toggle::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: linear-gradient(135deg, #ecc94b 0%, #f6e05e 100%);
    border-radius: 8px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.language-toggle[data-lang="en"]::before {
    transform: translateX(100%);
}

.lang-btn {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-family: inherit;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn:hover {
    color: #744210;
}

.lang-btn.active {
    color: #744210;
    font-weight: 700;
}

h1 {
    text-align: center;
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
}

.forgot-password-form {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.input-header {
    margin-bottom: 8px;
}

.label-with-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-icon {
    display: flex;
    align-items: center;
}

.input-icon svg {
    width: 20px;
    height: 20px;
}

label {
    color: #4a5568;
    font-size: 14px;
    font-weight: 500;
}

input[type="email"],
input[type="text"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

input[type="email"]:focus,
input[type="text"]:focus {
    outline: none;
    border-color: #ecc94b;
    box-shadow: 0 0 0 3px rgba(236, 201, 75, 0.1);
    background-color: white;
}

.reset-button {
    width: 100%;
    padding: 14px;
    background: #ecc94b;
    color: #1a202c;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reset-button:hover {
    background: #d69e2e;
    transform: translateY(-1px);
}

.reset-button:active {
    transform: translateY(0);
}

.back-to-login {
    text-align: center;
    margin-top: 24px;
}

.back-to-login a {
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-to-login a:hover {
    color: #2d3748;
    text-decoration: underline;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background-color: #fff5f5;
    color: #c53030;
    border: 1px solid #feb2b2;
}

.alert-success {
    background-color: #f0fff4;
    color: #2f855a;
    border: 1px solid #9ae6b4;
}

/* Responsive Design */
@media (max-width: 480px) {
    .forgot-password-box {
        padding: 30px 20px;
    }

    h1 {
        font-size: 22px;
    }

    .subtitle {
        font-size: 14px;
    }

    .language-toggle {
        margin-bottom: 20px;
        padding: 3px;
    }

    .lang-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-height: 32px;
    }

    input[type="email"],
    input[type="text"] {
        font-size: 14px;
        padding: 10px 14px;
    }

    .reset-button {
        padding: 12px;
        font-size: 14px;
    }
} 