/* style/registration-guide-password-recovery.css */

:root {
    --page-primary-color: #007bff;
    --page-secondary-color: #ffc107;
    --page-text-color: #333;
    --page-light-text-color: #fff;
    --page-background-light: #f8f9fa;
    --page-background-dark: #343a40;
    --page-border-color: #dee2e6;
}

.page-registration-guide-password-recovery {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-text-color);
    background-color: var(--page-background-light);
}

.page-registration-guide-password-recovery__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-registration-guide-password-recovery__hero-section {
    background: linear-gradient(135deg, var(--page-primary-color) 0%, #0056b3 100%);
    color: var(--page-light-text-color);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-password-recovery__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract_geometric_pattern,blue_gold_gradient,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-registration-guide-password-recovery__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--page-light-text-color);
    position: relative;
    z-index: 1;
}

.page-registration-guide-password-recovery__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-registration-guide-password-recovery__cta-button {
    display: inline-block;
    background-color: var(--page-secondary-color);
    color: var(--page-text-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-registration-guide-password-recovery__cta-button:hover {
    background-color: #e0a800; /* Darker shade of secondary color */
    transform: translateY(-3px);
}

.page-registration-guide-password-recovery__content-section {
    padding: 60px 0;
    background-color: var(--page-background-light);
}

.page-registration-guide-password-recovery__section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.page-registration-guide-password-recovery__section-title {
    font-size: 2.2em;
    color: var(--page-primary-color);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.page-registration-guide-password-recovery__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--page-secondary-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-registration-guide-password-recovery__article {
    background-color: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
}

.page-registration-guide-password-recovery__article-title {
    font-size: 1.8em;
    color: var(--page-primary-color);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--page-border-color);
    padding-bottom: 15px;
}

.page-registration-guide-password-recovery__step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-registration-guide-password-recovery__step-list li {
    margin-bottom: 30px;
    padding-left: 60px;
    position: relative;
}

.page-registration-guide-password-recovery__step-list li h4 {
    font-size: 1.4em;
    color: var(--page-primary-color);
    margin-bottom: 10px;
}

.page-registration-guide-password-recovery__step-list li::before {
    counter-increment: step-counter;
    content: "Bước " counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--page-primary-color);
    color: var(--page-light-text-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-password-recovery__tip {
    background-color: #e9f7ff; /* Light blue */
    border-left: 5px solid var(--page-primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 5px;
    font-style: italic;
    color: #0056b3;
}

.page-registration-guide-password-recovery__bullet-list {
    list-style: disc;
    margin-left: 20px;
    padding-left: 0;
}

.page-registration-guide-password-recovery__bullet-list li {
    margin-bottom: 10px;
}

.page-registration-guide-password-recovery__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-password-recovery__image-inline {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.page-registration-guide-password-recovery__faq-section {
    margin-top: 40px;
}

.page-registration-guide-password-recovery__faq-item {
    background-color: var(--page-background-light);
    border: 1px solid var(--page-border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.page-registration-guide-password-recovery__faq-item:hover {
    background-color: #e2f2ff;
}

.page-registration-guide-password-recovery__faq-item h4 {
    color: var(--page-primary-color);
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-registration-guide-password-recovery__cta-section {
    text-align: center;
    background-color: var(--page-primary-color);
    color: var(--page-light-text-color);
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.page-registration-guide-password-recovery__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: var(--page-light-text-color);
}

.page-registration-guide-password-recovery__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-registration-guide-password-recovery__cta-button--primary {
    background-color: var(--page-secondary-color);
    color: var(--page-text-color);
}

.page-registration-guide-password-recovery__cta-button--primary:hover {
    background-color: #e0a800;
}

.page-registration-guide-password-recovery__cta-button--secondary {
    background-color: var(--page-light-text-color);
    color: var(--page-primary-color);
    border: 2px solid var(--page-light-text-color);
}

.page-registration-guide-password-recovery__cta-button--secondary:hover {
    background-color: #e9ecef;
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-registration-guide-password-recovery__hero-title {
        font-size: 2.2em;
    }
    .page-registration-guide-password-recovery__hero-description {
        font-size: 1em;
    }
    .page-registration-guide-password-recovery__section-title {
        font-size: 1.8em;
    }
    .page-registration-guide-password-recovery__article-title {
        font-size: 1.5em;
    }
    .page-registration-guide-password-recovery__step-list li h4 {
        font-size: 1.2em;
    }
    .page-registration-guide-password-recovery__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-registration-guide-password-recovery__hero-section {
        padding: 60px 0;
    }
    .page-registration-guide-password-recovery__hero-title {
        font-size: 1.8em;
    }
    .page-registration-guide-password-recovery__hero-description {
        font-size: 0.9em;
    }
    .page-registration-guide-password-recovery__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-registration-guide-password-recovery__content-section {
        padding: 40px 0;
    }
    .page-registration-guide-password-recovery__article {
        padding: 25px;
    }
    .page-registration-guide-password-recovery__section-title {
        font-size: 1.6em;
    }
    .page-registration-guide-password-recovery__article-title {
        font-size: 1.3em;
    }
    .page-registration-guide-password-recovery__step-list li {
        padding-left: 45px;
    }
    .page-registration-guide-password-recovery__step-list li::before {
        width: 35px;
        height: 35px;
        font-size: 0.8em;
    }
    .page-registration-guide-password-recovery__cta-section {
        padding: 40px 15px;
    }
    .page-registration-guide-password-recovery__cta-title {
        font-size: 1.8em;
    }
    .page-registration-guide-password-recovery__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .page-registration-guide-password-recovery__container {
        padding: 0 15px;
    }
    .page-registration-guide-password-recovery__hero-title {
        font-size: 1.5em;
    }
    .page-registration-guide-password-recovery__hero-description {
        font-size: 0.85em;
    }
    .page-registration-guide-password-recovery__cta-button {
        width: 100%;
        max-width: 300px;
    }
    .page-registration-guide-password-recovery__article {
        padding: 20px;
    }
    .page-registration-guide-password-recovery__section-title {
        font-size: 1.4em;
    }
    .page-registration-guide-password-recovery__article-title {
        font-size: 1.2em;
    }
    .page-registration-guide-password-recovery__faq-item h4 {
        font-size: 1.1em;
    }
}