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

.page-login-two-factor-authentication {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

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

.page-login-two-factor-authentication__hero-section {
    background: linear-gradient(135deg, #1A237E, #3F51B5);
    color: #FFFFFF;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login-two-factor-authentication__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: rotate(45deg);
    z-index: 0;
}

.page-login-two-factor-authentication__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    transform: rotate(-30deg);
    z-index: 0;
}

.page-login-two-factor-authentication__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-login-two-factor-authentication__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.page-login-two-factor-authentication__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: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-login-two-factor-authentication__btn--primary {
    background-color: #FFD700;
    color: #1A237E;
}

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

.page-login-two-factor-authentication__hero-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.page-login-two-factor-authentication__content-section {
    padding: 80px 0;
}

.page-login-two-factor-authentication__bg--light {
    background-color: #f8f8f8;
    color: #333;
}

.page-login-two-factor-authentication__bg--dark {
    background-color: #1A237E;
    color: #e0e0e0;
}

.page-login-two-factor-authentication__bg--accent {
    background-color: #FFD700;
    color: #1A237E;
}

.page-login-two-factor-authentication__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    color: #1A237E;
    font-weight: bold;
}

.page-login-two-factor-authentication__section-title--light {
    color: #FFD700;
}

.page-login-two-factor-authentication__section-title--dark {
    color: #1A237E;
}

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

.page-login-two-factor-authentication__text--light {
    color: #e0e0e0;
}

.page-login-two-factor-authentication__highlight {
    color: #1A237E;
    font-weight: bold;
}

.page-login-two-factor-authentication__text--light .page-login-two-factor-authentication__highlight {
    color: #FFD700;
}

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

.page-login-two-factor-authentication__feature-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-login-two-factor-authentication__feature-item:hover {
    transform: translateY(-10px);
}

.page-login-two-factor-authentication__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    color: #1A237E;
}

.page-login-two-factor-authentication__feature-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-login-two-factor-authentication__container--reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 50px;
}

.page-login-two-factor-authentication__text-block {
    flex: 1;
}

.page-login-two-factor-authentication__image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-login-two-factor-authentication__image--left {
    order: -1; /* Place image on left */
}

.page-login-two-factor-authentication__image--right {
    order: 1; /* Place image on right */
}

.page-login-two-factor-authentication__image--center {
    display: block;
    margin: 30px auto;
    max-width: 70%;
}

.page-login-two-factor-authentication__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 1.1em;
}

.page-login-two-factor-authentication__list--light {
    color: #e0e0e0;
}

.page-login-two-factor-authentication__list li {
    margin-bottom: 10px;
}

.page-login-two-factor-authentication__btn--secondary {
    background-color: #FFD700;
    color: #1A237E;
    margin-top: 20px;
}

.page-login-two-factor-authentication__btn--secondary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-login-two-factor-authentication__numbered-list {
    list-style: none;
    counter-reset: my-awesome-counter;
    margin-top: 40px;
    padding-left: 0;
}

.page-login-two-factor-authentication__numbered-list li {
    counter-increment: my-awesome-counter;
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.page-login-two-factor-authentication__numbered-list li::before {
    content: counter(my-awesome-counter);
    background-color: #1A237E;
    color: #FFD700;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-login-two-factor-authentication__list-title {
    font-size: 1.4em;
    color: #1A237E;
    margin-bottom: 10px;
}

.page-login-two-factor-authentication__faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-login-two-factor-authentication__faq-item {
    background-color: #FFFFFF;
    border-left: 5px solid #1A237E;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}

.page-login-two-factor-authentication__faq-question {
    font-size: 1.3em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-login-two-factor-authentication__cta-section {
    text-align: center;
    padding: 80px 0;
}

.page-login-two-factor-authentication__cta-section .page-login-two-factor-authentication__text--dark {
    color: #1A237E;
}

.page-login-two-factor-authentication__cta-section .page-login-two-factor-authentication__highlight {
    color: #1A237E;
}

.page-login-two-factor-authentication__cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-login-two-factor-authentication__btn--dark {
    background-color: #1A237E;
    color: #FFD700;
}

.page-login-two-factor-authentication__btn--dark:hover {
    background-color: #0d1242;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-login-two-factor-authentication__cta-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-login-two-factor-authentication__main-title {
        font-size: 2.5em;
    }
    .page-login-two-factor-authentication__section-title {
        font-size: 2em;
    }
    .page-login-two-factor-authentication__container--reverse {
        flex-direction: column;
        text-align: center;
    }
    .page-login-two-factor-authentication__image {
        max-width: 80%;
        margin-top: 30px;
    }
    .page-login-two-factor-authentication__image--left, .page-login-two-factor-authentication__image--right {
        order: unset;
    }
    .page-login-two-factor-authentication__faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-login-two-factor-authentication__hero-section {
        padding: 80px 0 40px;
    }
    .page-login-two-factor-authentication__main-title {
        font-size: 2em;
    }
    .page-login-two-factor-authentication__subtitle {
        font-size: 1em;
    }
    .page-login-two-factor-authentication__section-title {
        font-size: 1.8em;
    }
    .page-login-two-factor-authentication__content-section {
        padding: 60px 0;
    }
    .page-login-two-factor-authentication__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-login-two-factor-authentication__numbered-list li {
        padding-left: 50px;
    }
    .page-login-two-factor-authentication__numbered-list li::before {
        width: 40px;
        height: 40px;
        font-size: 1.3em;
    }
    .page-login-two-factor-authentication__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-login-two-factor-authentication__main-title {
        font-size: 1.8em;
    }
    .page-login-two-factor-authentication__section-title {
        font-size: 1.5em;
    }
    .page-login-two-factor-authentication__hero-image {
        max-width: 90%;
    }
    .page-login-two-factor-authentication__image {
        max-width: 95%;
    }
    .page-login-two-factor-authentication__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-login-two-factor-authentication__btn {
        width: 80%;
    }
}