/* style/register-login-forgot-password.css */

.page-register-login-forgot-password {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-register-login-forgot-password__hero-section {
    background: linear-gradient(135deg, #FFD700 0%, #00BFFF 100%);
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-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%;
    animation: floatEffect 10s infinite ease-in-out;
}

.page-register-login-forgot-password__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatEffect 12s infinite reverse ease-in-out;
}

@keyframes floatEffect {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 0.8; }
    50% { transform: translate(20px, 20px) rotate(180deg); opacity: 0.6; }
    100% { transform: translate(0, 0) rotate(360deg); opacity: 0.8; }
}

.page-register-login-forgot-password__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-register-login-forgot-password__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-register-login-forgot-password__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
    border: 2px solid transparent;
}

.page-register-login-forgot-password__btn--primary {
    background-color: #FFD700;
    color: #333;
    border-color: #FFD700;
}

.page-register-login-forgot-password__btn--primary:hover {
    background-color: #e6c200;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-forgot-password__btn--secondary {
    background-color: #00BFFF;
    color: #fff;
    border-color: #00BFFF;
}

.page-register-login-forgot-password__btn--secondary:hover {
    background-color: #0099cc;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-forgot-password__btn--outline {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.page-register-login-forgot-password__btn--outline:hover {
    background-color: #fff;
    color: #00BFFF;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-forgot-password__btn--download {
    background-color: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
    margin-top: 20px;
}

.page-register-login-forgot-password__btn--download:hover {
    background-color: #45a049;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-forgot-password__content-section,
.page-register-login-forgot-password__security-tips-section,
.page-register-login-forgot-password__contact-section,
.page-register-login-forgot-password__promo-section,
.page-register-login-forgot-password__faq-section,
.page-register-login-forgot-password__conclusion-section {
    padding: 80px 0;
}

.page-register-login-forgot-password__section--gold-bg {
    background-color: #fff8e1; /* Light gold tint for background */
    color: #333;
}

.page-register-login-forgot-password__section--blue-bg {
    background-color: #00BFFF;
    color: #fff;
}

.page-register-login-forgot-password__section-title {
    font-size: 2.5em;
    color: #222;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.page-register-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-register-login-forgot-password__section--blue-bg .page-register-login-forgot-password__section-title {
    color: #fff;
}

.page-register-login-forgot-password__section--blue-bg .page-register-login-forgot-password__section-title::after {
    background-color: #FFD700;
}

.page-register-login-forgot-password__text-block {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #555;
}

.page-register-login-forgot-password__section--blue-bg .page-register-login-forgot-password__text-block {
    color: #e0f2f7;
}

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

.page-register-login-forgot-password__step-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #FFD700;
}

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

.page-register-login-forgot-password__step-icon {
    font-size: 2.5em;
    font-weight: bold;
    color: #FFD700;
    margin-bottom: 20px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    background-color: #fcf8e3;
    border: 2px solid #FFD700;
}

.page-register-login-forgot-password__step-title {
    font-size: 1.5em;
    color: #00BFFF;
    margin-bottom: 15px;
}

.page-register-login-forgot-password__step-item p,
.page-register-login-forgot-password__step-item h4 {
    color: #555;
    text-align: left;
}

.page-register-login-forgot-password__step-item h4 {
    font-size: 1.2em;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
}

.page-register-login-forgot-password__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #eee;
}

.page-register-login-forgot-password__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.page-register-login-forgot-password__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-register-login-forgot-password__list li::before {
    content: '✓';
    color: #00BFFF;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.page-register-login-forgot-password__list--white-text li::before {
    color: #FFD700;
}

.page-register-login-forgot-password__security-tips-section {
    background-color: #f0f8ff; /* Light blue tint */
}

.page-register-login-forgot-password__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-register-login-forgot-password__tip-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid #00BFFF;
}

.page-register-login-forgot-password__tip-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-register-login-forgot-password__tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.page-register-login-forgot-password__tip-title {
    font-size: 1.3em;
    color: #00BFFF;
    margin-bottom: 10px;
}

.page-register-login-forgot-password__tip-item p {
    color: #666;
    font-size: 0.95em;
}

.page-register-login-forgot-password__contact-section .page-register-login-forgot-password__list li {
    color: #fff;
}

.page-register-login-forgot-password__promo-section {
    background-color: #fff;
}

.page-register-login-forgot-password__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-register-login-forgot-password__feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-register-login-forgot-password__feature-item:hover {
    background-color: #e6f7ff;
}

.page-register-login-forgot-password__feature-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-register-login-forgot-password__feature-item h4 {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-register-login-forgot-password__feature-item p {
    color: #555;
    font-size: 1em;
}

.page-register-login-forgot-password__sub-section-title {
    font-size: 2em;
    color: #00BFFF;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-register-login-forgot-password__sub-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #00BFFF;
    border-radius: 1.5px;
}

.page-register-login-forgot-password__faq-list {
    margin-top: 40px;
}

.page-register-login-forgot-password__faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-register-login-forgot-password__faq-question {
    font-size: 1.2em;
    color: #00BFFF;
    padding: 20px;
    cursor: pointer;
    margin: 0;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-register-login-forgot-password__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-register-login-forgot-password__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-register-login-forgot-password__faq-answer {
    padding: 0 20px 20px 20px;
    color: #666;
    font-size: 1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-register-login-forgot-password__faq-question.active + .page-register-login-forgot-password__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding-top: 10px;
}

.page-register-login-forgot-password__conclusion-section {
    background-color: #f8f8f8;
    text-align: center;
}

.page-register-login-forgot-password__cta-group {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-register-login-forgot-password__hero-title {
        font-size: 2.8em;
    }

    .page-register-login-forgot-password__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-register-login-forgot-password__hero-section,
    .page-register-login-forgot-password__content-section,
    .page-register-login-forgot-password__security-tips-section,
    .page-register-login-forgot-password__contact-section,
    .page-register-login-forgot-password__promo-section,
    .page-register-login-forgot-password__faq-section,
    .page-register-login-forgot-password__conclusion-section {
        padding: 60px 0;
    }

    .page-register-login-forgot-password__hero-title {
        font-size: 2.2em;
    }

    .page-register-login-forgot-password__hero-subtitle {
        font-size: 1em;
    }

    .page-register-login-forgot-password__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-register-login-forgot-password__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register-login-forgot-password__step-item,
    .page-register-login-forgot-password__tip-item,
    .page-register-login-forgot-password__feature-item {
        padding: 20px;
    }

    .page-register-login-forgot-password__step-title {
        font-size: 1.3em;
    }

    .page-register-login-forgot-password__tip-title,
    .page-register-login-forgot-password__feature-item h4 {
        font-size: 1.2em;
    }

    .page-register-login-forgot-password__sub-section-title {
        font-size: 1.6em;
    }

    .page-register-login-forgot-password__faq-question {
        font-size: 1.1em;
    }
}

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

    .page-register-login-forgot-password__section-title {
        font-size: 1.5em;
    }

    .page-register-login-forgot-password__btn {
        width: 100%;
        margin-bottom: 15px;
    }

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

    .page-register-login-forgot-password__step-icon {
        font-size: 2em;
        width: 50px;
        height: 50px;
        line-height: 50px;
    }

    .page-register-login-forgot-password__faq-question {
        font-size: 1em;
        padding: 15px;
    }
    .page-register-login-forgot-password__faq-question::after {
        font-size: 1.2em;
        right: 15px;
    }
    .page-register-login-forgot-password__faq-answer {
        padding: 0 15px 15px 15px;
    }
}