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

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

.page-registration-login-forgot-password__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-registration-login-forgot-password__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-registration-login-forgot-password__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: rotate(45deg);
}

.page-registration-login-forgot-password__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-registration-login-forgot-password__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-registration-login-forgot-password__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-registration-login-forgot-password__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-registration-login-forgot-password__btn--primary {
    background-color: #FFD700;
    color: #007BFF;
}

.page-registration-login-forgot-password__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-registration-login-forgot-password__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-registration-login-forgot-password__btn--secondary:hover {
    background-color: #FFD700;
    color: #007BFF;
    transform: translateY(-2px);
}

.page-registration-login-forgot-password__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-registration-login-forgot-password__section-title {
    font-size: 2.2em;
    color: #007BFF;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

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

.page-registration-login-forgot-password__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: #444;
}

.page-registration-login-forgot-password__step-by-step {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-registration-login-forgot-password__step {
    background-color: #f0f8ff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-registration-login-forgot-password__step:hover {
    transform: translateY(-5px);
}

.page-registration-login-forgot-password__step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: #007BFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 8px rgba(0, 123, 255, 0.2);
}

.page-registration-login-forgot-password__icon {
    width: 45px;
    height: 45px;
    filter: invert(100%) brightness(150%); /* Makes icons white/bright */
}

.page-registration-login-forgot-password__step-title {
    font-size: 1.6em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-registration-login-forgot-password__list {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    text-align: left;
    color: #555;
}

.page-registration-login-forgot-password__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05em;
}

.page-registration-login-forgot-password__list li::before {
    content: '✔️';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.page-registration-login-forgot-password__list--bullet li::before {
    content: '•';
    color: #007BFF;
    font-size: 1.5em;
    top: -2px;
}

.page-registration-login-forgot-password__link {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.page-registration-login-forgot-password__link:hover {
    text-decoration: underline;
    color: #0056b3;
}

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

.page-registration-login-forgot-password__image--full-width {
    margin-bottom: 20px;
}

.page-registration-login-forgot-password__faq {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-registration-login-forgot-password__faq-item {
    background-color: #f9f9f9;
    border-left: 5px solid #007BFF;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-registration-login-forgot-password__faq-question {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-registration-login-forgot-password__faq-answer {
    font-size: 1.05em;
    color: #555;
}

.page-registration-login-forgot-password__cta-block {
    background-color: #007BFF;
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.page-registration-login-forgot-password__cta-text {
    font-size: 1.8em;
    margin-bottom: 30px;
    font-weight: bold;
    color: #FFD700;
}

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

    .page-registration-login-forgot-password__subtitle {
        font-size: 1.1em;
    }

    .page-registration-login-forgot-password__section-title {
        font-size: 1.8em;
    }

    .page-registration-login-forgot-password__text,
    .page-registration-login-forgot-password__list li,
    .page-registration-login-forgot-password__faq-answer {
        font-size: 1em;
    }

    .page-registration-login-forgot-password__step-title {
        font-size: 1.4em;
    }

    .page-registration-login-forgot-password__cta-text {
        font-size: 1.4em;
    }

    .page-registration-login-forgot-password__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-registration-login-forgot-password__btn {
        width: 80%;
        margin: 0 auto;
    }
}

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

    .page-registration-login-forgot-password__section-title {
        font-size: 1.6em;
    }

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

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

    .page-registration-login-forgot-password__step {
        padding: 20px;
    }

    .page-registration-login-forgot-password__btn {
        width: 90%;
    }
}