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

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

.page-register-login-password-recovery .hero-section {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Deeper blue for main, then lighter for text */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-register-login-password-recovery .hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(45deg);
    z-index: 0;
}

.page-register-login-password-recovery .hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.page-register-login-password-recovery .hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
    position: relative;
    z-index: 1;
}

.page-register-login-password-recovery .section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker blue for contrast */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    position: relative;
}

.page-register-login-password-recovery .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #ffc107; /* Accent color */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-register-login-password-recovery .section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
}

.page-register-login-password-recovery .recovery-steps-section,
.page-register-login-password-recovery .important-notes-section,
.page-register-login-password-recovery .faq-section,
.page-register-login-password-recovery .cta-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-register-login-password-recovery .recovery-steps-section {
    background-color: #ffffff;
}

.page-register-login-password-recovery .step-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-register-login-password-recovery .step-icon {
    background-color: #ffc107; /* Accent color */
    color: #0056b3; /* Darker blue for contrast */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}

.page-register-login-password-recovery .step-title {
    font-size: 1.8em;
    color: #007bff; /* Primary blue */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-register-login-password-recovery .step-item p {
    font-size: 1.05em;
    color: #444;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-register-login-password-recovery .step-item ul {
    text-align: left;
    list-style-type: disc;
    margin-left: 25px;
    color: #444;
    margin-bottom: 20px;
    max-width: 800px;
}

.page-register-login-password-recovery .step-item ul li {
    margin-bottom: 8px;
}

.page-register-login-password-recovery .step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-register-login-password-recovery .important-notes-section {
    background-color: #eaf6ff; /* Light blue background */
}

.page-register-login-password-recovery .note-item {
    background-color: #ffffff;
    border-left: 5px solid #007bff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-register-login-password-recovery .note-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-register-login-password-recovery .note-item p {
    color: #555;
    font-size: 1.05em;
}

.page-register-login-password-recovery .note-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.page-register-login-password-recovery .faq-section {
    background-color: #ffffff;
}

.page-register-login-password-recovery .faq-item {
    background-color: #f0f8ff;
    border: 1px solid #cceeff;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-register-login-password-recovery .faq-item:hover {
    background-color: #e0f2ff;
}

.page-register-login-password-recovery .faq-question {
    font-size: 1.4em;
    color: #0056b3;
    margin-bottom: 10px;
    font-weight: bold;
    position: relative;
    padding-right: 30px;
}

.page-register-login-password-recovery .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #007bff;
    transition: transform 0.3s ease;
}

.page-register-login-password-recovery .faq-item.active .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-register-login-password-recovery .faq-answer {
    font-size: 1.05em;
    color: #666;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding-top 0.5s ease-out;
    padding-top: 0;
}

.page-register-login-password-recovery .faq-item.active .faq-answer {
    max-height: 500px; /* Arbitrary large value to allow content to show */
    padding-top: 15px;
}

.page-register-login-password-recovery .cta-section {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #ffffff;
    text-align: center;
    padding: 80px 0;
}

.page-register-login-password-recovery .cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-register-login-password-recovery .cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-register-login-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;
    white-space: nowrap;
}

.page-register-login-password-recovery .btn-primary {
    background-color: #ffc107; /* Accent color */
    color: #0056b3; /* Darker blue for contrast */
    border: 2px solid #ffc107;
}

.page-register-login-password-recovery .btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #003e80;
}

.page-register-login-password-recovery .btn-secondary {
    background-color: #0056b3; /* Darker blue */
    color: #ffffff;
    border: 2px solid #0056b3;
}

.page-register-login-password-recovery .btn-secondary:hover {
    background-color: #003e80;
    border-color: #003e80;
}

.page-register-login-password-recovery .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-register-login-password-recovery .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-register-login-password-recovery .hero-title {
        font-size: 2.5em;
    }

    .page-register-login-password-recovery .hero-subtitle {
        font-size: 1em;
    }

    .page-register-login-password-recovery .section-title {
        font-size: 2em;
    }

    .page-register-login-password-recovery .step-title {
        font-size: 1.5em;
    }

    .page-register-login-password-recovery .note-title {
        font-size: 1.3em;
    }

    .page-register-login-password-recovery .faq-question {
        font-size: 1.2em;
    }

    .page-register-login-password-recovery .cta-title {
        font-size: 2em;
    }

    .page-register-login-password-recovery .btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-register-login-password-recovery .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-register-login-password-recovery .step-item,
    .page-register-login-password-recovery .note-item,
    .page-register-login-password-recovery .faq-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-register-login-password-recovery .hero-title {
        font-size: 2em;
    }

    .page-register-login-password-recovery .section-title {
        font-size: 1.8em;
    }

    .page-register-login-password-recovery .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8em;
    }

    .page-register-login-password-recovery .btn {
        width: 100%;
        text-align: center;
    }
}