/* style/register-login-two-factor-authentication.css */

/* Base styles for the page content */
.page-register-login-two-factor-authentication {
    font-family: 'Arial', sans-serif;
    color: #ffffff; /* White text on dark backgrounds */
    line-height: 1.6;
    background-color: #0d123d; /* A slightly lighter variant of #1A237E for overall background */
}

.page-register-login-two-factor-authentication__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-register-login-two-factor-authentication__hero-section {
    background: linear-gradient(135deg, #1A237E 0%, #0d123d 100%); /* Gradient from primary to slightly lighter dark */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFB300;
}

.page-register-login-two-factor-authentication__hero-title {
    font-size: 3.2em;
    color: #FFB300; /* Amber Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-register-login-two-factor-authentication__hero-subtitle {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #e0e0e0;
}

.page-register-login-two-factor-authentication__hero-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-register-login-two-factor-authentication__section {
    padding: 60px 0;
    background-color: #1A237E;
    border-bottom: 1px solid rgba(255, 179, 0, 0.2);
}

.page-register-login-two-factor-authentication__section--alt-bg {
    background-color: #0d123d;
}

.page-register-login-two-factor-authentication__section-title {
    font-size: 2.5em;
    color: #FFB300; /* Amber Gold for section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-register-login-two-factor-authentication__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFB300;
    border-radius: 2px;
}

.page-register-login-two-factor-authentication__sub-title {
    font-size: 1.8em;
    color: #FFB300;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-register-login-two-factor-authentication__text-content {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-register-login-two-factor-authentication__list {
    list-style: disc inside;
    color: #e0e0e0;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-register-login-two-factor-authentication__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-register-login-two-factor-authentication__list--small li {
    font-size: 0.95em;
}

.page-register-login-two-factor-authentication__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-two-factor-authentication__image--center {
    text-align: center;
}

/* Buttons */
.page-register-login-two-factor-authentication__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;
    text-align: center;
    cursor: pointer;
    border: none;
}

.page-register-login-two-factor-authentication__btn--primary {
    background-color: #FFB300; /* Amber Gold */
    color: #1A237E; /* Deep Blue text */
}

.page-register-login-two-factor-authentication__btn--primary:hover {
    background-color: #e69a00; /* Darker Amber Gold */
    transform: translateY(-3px);
}

.page-register-login-two-factor-authentication__btn--secondary {
    background-color: #1A237E; /* Deep Blue */
    color: #FFB300; /* Amber Gold text */
    border: 2px solid #FFB300;
}

.page-register-login-two-factor-authentication__btn--secondary:hover {
    background-color: #2c388e; /* Lighter Deep Blue */
    transform: translateY(-3px);
}

.page-register-login-two-factor-authentication__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #2c388e; /* Lighter Deep Blue */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-two-factor-authentication__cta-block p {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-register-login-two-factor-authentication__cta-final-section {
    background-color: #1A237E;
    padding: 80px 0;
    text-align: center;
}

.page-register-login-two-factor-authentication__btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Steps Grid */
.page-register-login-two-factor-authentication__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-register-login-two-factor-authentication__step-item {
    background-color: #2c388e; /* Lighter Deep Blue */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.page-register-login-two-factor-authentication__step-title {
    font-size: 1.6em;
    color: #FFB300;
    margin-bottom: 15px;
}

.page-register-login-two-factor-authentication__step-item p {
    color: #e0e0e0;
    font-size: 1.05em;
}

.page-register-login-two-factor-authentication__step-item a {
    color: #FFB300;
    text-decoration: underline;
}

.page-register-login-two-factor-authentication__step-item a:hover {
    color: #e69a00;
}

/* Two Column Grid */
.page-register-login-two-factor-authentication__grid-two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.page-register-login-two-factor-authentication__grid-item {
    background-color: #2c388e;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-register-login-two-factor-authentication__grid-item p {
    color: #e0e0e0;
}

/* FAQ Accordion */
.page-register-login-two-factor-authentication__faq-accordion {
    margin-top: 30px;
}

.page-register-login-two-factor-authentication__faq-item {
    background-color: #1A237E;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-register-login-two-factor-authentication__faq-question {
    font-size: 1.3em;
    color: #FFB300;
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
    background-color: #2c388e;
}

.page-register-login-two-factor-authentication__faq-question:hover {
    background-color: #3f4a9b;
}

.page-register-login-two-factor-authentication__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-register-login-two-factor-authentication__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-register-login-two-factor-authentication__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    color: #e0e0e0;
}

.page-register-login-two-factor-authentication__faq-answer p {
    padding-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-register-login-two-factor-authentication__hero-title {
        font-size: 2.5em;
    }

    .page-register-login-two-factor-authentication__hero-subtitle {
        font-size: 1em;
    }

    .page-register-login-two-factor-authentication__section-title {
        font-size: 2em;
    }

    .page-register-login-two-factor-authentication__sub-title {
        font-size: 1.5em;
    }

    .page-register-login-two-factor-authentication__btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-register-login-two-factor-authentication__btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-register-login-two-factor-authentication__hero-title {
        font-size: 2em;
    }

    .page-register-login-two-factor-authentication__section-title {
        font-size: 1.8em;
    }

    .page-register-login-two-factor-authentication__hero-section,
    .page-register-login-two-factor-authentication__section,
    .page-register-login-two-factor-authentication__cta-final-section {
        padding: 40px 0;
    }

    .page-register-login-two-factor-authentication__faq-question {
        font-size: 1.1em;
    }
}