/* style/registration-guide-forgot-password.css */
.page-registration-guide-forgot-password {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-registration-guide-forgot-password__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004d99 100%); /* Deep blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-forgot-password__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: page-registration-guide-forgot-password__pulse 15s infinite ease-in-out;
}

@keyframes page-registration-guide-forgot-password__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-registration-guide-forgot-password__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-guide-forgot-password__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-forgot-password__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-registration-guide-forgot-password__button--primary {
    background-color: #FFD700; /* Gold */
    color: #003366; /* Deep blue text */
    border: 2px solid #FFD700;
}

.page-registration-guide-forgot-password__button--primary:hover {
    background-color: #e6c200; /* Darker gold */
    transform: translateY(-3px);
}

.page-registration-guide-forgot-password__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-registration-guide-forgot-password__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-registration-guide-forgot-password__content-section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-registration-guide-forgot-password__step-by-step {
    padding-top: 40px;
}

.page-registration-guide-forgot-password__heading {
    font-size: 2em;
    color: #003366; /* Deep blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-registration-guide-forgot-password__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold accent */
    border-radius: 2px;
}

.page-registration-guide-forgot-password__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-registration-guide-forgot-password__step {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 30px;
    flex: 1 1 calc(33% - 60px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 300px;
}

.page-registration-guide-forgot-password__step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-forgot-password__step-icon {
    background-color: #003366; /* Deep blue */
    color: #FFD700; /* Gold */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px auto;
    border: 3px solid #FFD700;
}

.page-registration-guide-forgot-password__step-title {
    font-size: 1.5em;
    color: #003366; /* Deep blue */
    margin-bottom: 15px;
}

.page-registration-guide-forgot-password__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-forgot-password__list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.page-registration-guide-forgot-password__list li {
    background-color: #e6f0ff; /* Lighter blue */
    border-left: 5px solid #003366; /* Deep blue accent */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
}

.page-registration-guide-forgot-password__list li strong {
    color: #003366;
}

.page-registration-guide-forgot-password__cta-block {
    background-color: #003366; /* Deep blue */
    color: #fff;
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-forgot-password__cta-block .page-registration-guide-forgot-password__heading {
    color: #FFD700; /* Gold */
}

.page-registration-guide-forgot-password__cta-block .page-registration-guide-forgot-password__heading::after {
    background-color: #FFD700;
}

.page-registration-guide-forgot-password__cta-block p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-registration-guide-forgot-password__faq {
    margin-top: 40px;
}

.page-registration-guide-forgot-password__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-registration-guide-forgot-password__faq-question {
    background-color: #003366; /* Deep blue */
    color: #FFD700; /* Gold */
    padding: 18px 25px;
    margin: 0;
    font-size: 1.2em;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-registration-guide-forgot-password__faq-question:hover {
    background-color: #004d99;
}

.page-registration-guide-forgot-password__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-registration-guide-forgot-password__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-registration-guide-forgot-password__faq-answer {
    padding: 20px 25px;
    background-color: #fff;
    color: #555;
    border-top: 1px solid #eee;
    display: none;
}

.page-registration-guide-forgot-password__faq-answer.active {
    display: block;
}

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

    .page-registration-guide-forgot-password__subtitle {
        font-size: 1em;
    }

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

    .page-registration-guide-forgot-password__steps {
        flex-direction: column;
        align-items: center;
    }

    .page-registration-guide-forgot-password__step {
        flex: 1 1 90%;
        max-width: 500px;
    }

    .page-registration-guide-forgot-password__list li {
        font-size: 1em;
    }

    .page-registration-guide-forgot-password__cta-block {
        padding: 30px;
    }

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

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

    .page-registration-guide-forgot-password__button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .page-registration-guide-forgot-password__hero-section {
        padding: 60px 0;
    }

    .page-registration-guide-forgot-password__content-section {
        padding: 40px 0;
    }
}