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

/* Base styles for the specific page content */
.page-registration-guide-forgot-password-recovery {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for general content on potentially dark backgrounds */
    background-color: #1A1A2E; /* Main dark background */
}

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

/* Hero Section */
.page-registration-guide-forgot-password-recovery__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #30304a 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-forgot-password-recovery__title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 20px;
    color: #E6B325; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-registration-guide-forgot-password-recovery__subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #e0e0e0;
}

.page-registration-guide-forgot-password-recovery__hero-image-wrapper {
    margin-bottom: 40px;
}

.page-registration-guide-forgot-password-recovery__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.page-registration-guide-forgot-password-recovery__hero-image:hover {
    transform: translateY(-5px);
}

.page-registration-guide-forgot-password-recovery__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Content Section */
.page-registration-guide-forgot-password-recovery__content-section {
    padding: 60px 0;
    background-color: #1A1A2E; /* Consistent dark background */
}

.page-registration-guide-forgot-password-recovery__heading {
    font-size: 2.2em;
    color: #E6B325; /* Gold for section headings */
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.page-registration-guide-forgot-password-recovery__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: #E6B325;
    border-radius: 2px;
}

.page-registration-guide-forgot-password-recovery p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f0f0f0;
}

.page-registration-guide-forgot-password-recovery__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-registration-guide-forgot-password-recovery__list li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

/* Recovery Steps */
.page-registration-guide-forgot-password-recovery__recovery-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-registration-guide-forgot-password-recovery__step {
    background-color: #282840; /* Slightly lighter dark background for steps */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid #3a3a5a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-registration-guide-forgot-password-recovery__step:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.page-registration-guide-forgot-password-recovery__step-title {
    font-size: 1.6em;
    color: #E6B325;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-registration-guide-forgot-password-recovery__step-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #E6B325;
    border-radius: 1.5px;
}

.page-registration-guide-forgot-password-recovery__step ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-registration-guide-forgot-password-recovery__step ol li {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-registration-guide-forgot-password-recovery__step ol li strong {
    color: #E6B325;
}

.page-registration-guide-forgot-password-recovery__step ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #f0f0f0;
}

.page-registration-guide-forgot-password-recovery__step ul li {
    margin-bottom: 8px;
    font-size: 1em;
}

.page-registration-guide-forgot-password-recovery__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Security Tips */
.page-registration-guide-forgot-password-recovery__security-tips {
    list-style: none; /* Remove default list style */
    padding: 0;
    margin-left: 0;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-registration-guide-forgot-password-recovery__security-tips li {
    background-color: #282840;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #E6B325; /* Gold accent */
    font-size: 1.1em;
    color: #f0f0f0;
    transition: background-color 0.3s ease;
}

.page-registration-guide-forgot-password-recovery__security-tips li:hover {
    background-color: #3a3a5a;
}

.page-registration-guide-forgot-password-recovery__security-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* FAQ Section */
.page-registration-guide-forgot-password-recovery__faq {
    margin-top: 40px;
}

.page-registration-guide-forgot-password-recovery__faq-item {
    background-color: #282840;
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #3a3a5a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-forgot-password-recovery__faq-question {
    font-size: 1.3em;
    color: #E6B325;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-registration-guide-forgot-password-recovery__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-registration-guide-forgot-password-recovery__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-registration-guide-forgot-password-recovery__faq-item p {
    font-size: 1.05em;
    color: #f0f0f0;
    margin-top: 10px;
    display: none; /* Hidden by default */
}

.page-registration-guide-forgot-password-recovery__faq-item p.active {
    display: block;
}


/* Call to Action Section */
.page-registration-guide-forgot-password-recovery__cta-section {
    text-align: center;
    padding: 60px 0;
    background-color: #1A1A2E;
    margin-top: 50px;
    border-top: 1px solid #3a3a5a;
}

.page-registration-guide-forgot-password-recovery__cta-section .page-registration-guide-forgot-password-recovery__heading {
    color: #E6B325;
    margin-bottom: 20px;
}

.page-registration-guide-forgot-password-recovery__cta-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

/* Buttons */
.page-registration-guide-forgot-password-recovery__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
    white-space: nowrap;
}

.page-registration-guide-forgot-password-recovery__btn--primary {
    background-color: #E6B325; /* Gold button */
    color: #1A1A2E; /* Dark text on gold */
    box-shadow: 0 4px 10px rgba(230, 179, 37, 0.4);
}

.page-registration-guide-forgot-password-recovery__btn--primary:hover {
    background-color: #f0c54f;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 179, 37, 0.6);
}

.page-registration-guide-forgot-password-recovery__btn--secondary {
    background-color: #1A1A2E; /* Dark blue button */
    color: #E6B325; /* Gold text on dark blue */
    border: 2px solid #E6B325;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-forgot-password-recovery__btn--secondary:hover {
    background-color: #E6B325; /* Invert colors on hover */
    color: #1A1A2E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 179, 37, 0.4);
}

.page-registration-guide-forgot-password-recovery__btn--tertiary {
    background-color: #3a3a5a; /* A medium dark color */
    color: #ffffff;
    border: 2px solid #3a3a5a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-forgot-password-recovery__btn--tertiary:hover {
    background-color: #E6B325;
    color: #1A1A2E;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 179, 37, 0.4);
}

.page-registration-guide-forgot-password-recovery__btn--contact {
    background-color: #E6B325; /* Gold button */
    color: #1A1A2E; /* Dark text on gold */
    box-shadow: 0 4px 10px rgba(230, 179, 37, 0.4);
    margin-top: 20px;
}

.page-registration-guide-forgot-password-recovery__btn--contact:hover {
    background-color: #f0c54f;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(230, 179, 37, 0.6);
}


/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-guide-forgot-password-recovery__title {
        font-size: 2.2em;
    }

    .page-registration-guide-forgot-password-recovery__heading {
        font-size: 1.8em;
    }

    .page-registration-guide-forgot-password-recovery__subtitle,
    .page-registration-guide-forgot-password-recovery p,
    .page-registration-guide-forgot-password-recovery__list li,
    .page-registration-guide-forgot-password-recovery__step ol li,
    .page-registration-guide-forgot-password-recovery__step ul li,
    .page-registration-guide-forgot-password-recovery__security-tips li,
    .page-registration-guide-forgot-password-recovery__faq-item p {
        font-size: 1em;
    }

    .page-registration-guide-forgot-password-recovery__recovery-steps,
    .page-registration-guide-forgot-password-recovery__security-tips {
        grid-template-columns: 1fr;
    }

    .page-registration-guide-forgot-password-recovery__hero-cta,
    .page-registration-guide-forgot-password-recovery__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-registration-guide-forgot-password-recovery__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-forgot-password-recovery__title {
        font-size: 1.8em;
    }

    .page-registration-guide-forgot-password-recovery__heading {
        font-size: 1.5em;
    }

    .page-registration-guide-forgot-password-recovery__hero,
    .page-registration-guide-forgot-password-recovery__content-section,
    .page-registration-guide-forgot-password-recovery__cta-section {
        padding: 40px 0;
    }

    .page-registration-guide-forgot-password-recovery__step {
        padding: 20px;
    }

    .page-registration-guide-forgot-password-recovery__faq-question {
        font-size: 1.1em;
    }
}