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

.page-registration-guide-password-recovery {
    font-family: 'Arial', sans-serif;
    color: #f7fafc; /* Light text for dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-registration-guide-password-recovery-hero {
    background: linear-gradient(135deg, #1A202C 0%, #E53E3E 100%);
    padding: 100px 0;
    text-align: center;
    color: #f7fafc;
    position: relative;
    overflow: hidden;
}

.page-registration-guide-password-recovery-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #f7fafc;
}

.page-registration-guide-password-recovery-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e0;
}

.page-registration-guide-password-recovery-section {
    padding: 80px 0;
    text-align: center;
}

.page-registration-guide-password-recovery-section-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E53E3E;
}

.page-registration-guide-password-recovery-section-description {
    font-size: 1.1em;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e0;
}

.page-registration-guide-password-recovery-btn {
    display: inline-block;
    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;
    margin: 10px;
    cursor: pointer;
}

.page-registration-guide-password-recovery-btn-primary {
    background-color: #E53E3E;
    color: #f7fafc;
    border: 2px solid #E53E3E;
}

.page-registration-guide-password-recovery-btn-primary:hover {
    background-color: #c53030;
    transform: translateY(-3px);
}

.page-registration-guide-password-recovery-btn-secondary {
    background-color: transparent;
    color: #E53E3E;
    border: 2px solid #E53E3E;
}

.page-registration-guide-password-recovery-btn-secondary:hover {
    background-color: #E53E3E;
    color: #f7fafc;
    transform: translateY(-3px);
}

.page-registration-guide-password-recovery-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-registration-guide-password-recovery-step-item {
    background-color: #2D3748;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease;
    color: #f7fafc;
}

.page-registration-guide-password-recovery-step-item:hover {
    transform: translateY(-5px);
}

.page-registration-guide-password-recovery-step-icon {
    font-size: 2.5em;
    color: #E53E3E;
    font-weight: bold;
    margin-bottom: 20px;
    background-color: #4a5568;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    border: 3px solid #E53E3E;
}

.page-registration-guide-password-recovery-step-title {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #f7fafc;
    font-weight: bold;
}

.page-registration-guide-password-recovery-step-text {
    font-size: 1em;
    color: #cbd5e0;
    margin-bottom: 20px;
}

.page-registration-guide-password-recovery-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #cbd5e0;
}

.page-registration-guide-password-recovery-list li {
    margin-bottom: 8px;
}

.page-registration-guide-password-recovery-step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 1px solid #4a5568;
}

.page-registration-guide-password-recovery-cta-block {
    background-color: #2D3748;
    padding: 40px;
    border-radius: 12px;
    margin-top: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #f7fafc;
}

.page-registration-guide-password-recovery-cta-block p {
    font-size: 1.4em;
    margin-bottom: 25px;
    font-weight: 500;
    color: #f7fafc;
}

.page-registration-guide-password-recovery-security-tips .page-registration-guide-password-recovery-section-title {
    color: #f7fafc;
}

.page-registration-guide-password-recovery-security-list {
    list-style-type: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-registration-guide-password-recovery-security-list li {
    background-color: #2D3748;
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #f7fafc;
    position: relative;
    padding-left: 45px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-registration-guide-password-recovery-security-list li::before {
    content: '✅';
    position: absolute;
    left: 15px;
    color: #E53E3E;
    font-size: 1.2em;
    top: 50%;
    transform: translateY(-50%);
}

.page-registration-guide-password-recovery-image-full-width {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid #4a5568;
}

.page-registration-guide-password-recovery-faq {
    background-color: #2D3748;
    padding: 80px 0;
}

.page-registration-guide-password-recovery-faq .page-registration-guide-password-recovery-section-title {
    color: #f7fafc;
}

.page-registration-guide-password-recovery-accordion {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-registration-guide-password-recovery-accordion-item {
    background-color: #1A202C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-registration-guide-password-recovery-accordion-header {
    padding: 20px 30px;
    font-size: 1.25em;
    font-weight: bold;
    color: #f7fafc;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1A202C;
    transition: background-color 0.3s ease;
}

.page-registration-guide-password-recovery-accordion-header:hover {
    background-color: #2D3748;
}

.page-registration-guide-password-recovery-accordion-header::after {
    content: '+';
    font-size: 1.5em;
    color: #E53E3E;
    transition: transform 0.3s ease;
}

.page-registration-guide-password-recovery-accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-registration-guide-password-recovery-accordion-content {
    padding: 0 30px 20px;
    font-size: 1em;
    color: #cbd5e0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-registration-guide-password-recovery-accordion-content.active {
    max-height: 500px; /* Adjust as needed */
    padding: 0 30px 30px;
}

.page-registration-guide-password-recovery-call-to-action {
    background-color: #E53E3E;
    padding: 80px 0;
    text-align: center;
    color: #f7fafc;
}

.page-registration-guide-password-recovery-cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #f7fafc;
}

.page-registration-guide-password-recovery-cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #ffebee;
}

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

.page-registration-guide-password-recovery-image-bottom-cta {
    max-width: 600px;
    height: auto;
    margin-top: 50px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border: 3px solid #f7fafc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-registration-guide-password-recovery-hero-title {
        font-size: 2.5em;
    }
    .page-registration-guide-password-recovery-hero-subtitle {
        font-size: 1em;
    }
    .page-registration-guide-password-recovery-section-title {
        font-size: 2em;
    }
    .page-registration-guide-password-recovery-section-description {
        font-size: 0.9em;
    }
    .page-registration-guide-password-recovery-step-item {
        padding: 20px;
    }
    .page-registration-guide-password-recovery-step-title {
        font-size: 1.5em;
    }
    .page-registration-guide-password-recovery-security-list {
        grid-template-columns: 1fr;
    }
    .page-registration-guide-password-recovery-accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-registration-guide-password-recovery-accordion-content {
        padding: 0 20px 20px;
    }
    .page-registration-guide-password-recovery-cta-title {
        font-size: 2em;
    }
    .page-registration-guide-password-recovery-cta-description {
        font-size: 1em;
    }
    .page-registration-guide-password-recovery-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-registration-guide-password-recovery-btn {
        width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-registration-guide-password-recovery-hero-title {
        font-size: 2em;
    }
    .page-registration-guide-password-recovery-section-title {
        font-size: 1.8em;
    }
    .page-registration-guide-password-recovery-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-registration-guide-password-recovery-step-icon {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }
    .page-registration-guide-password-recovery-cta-title {
        font-size: 1.8em;
    }
}