/* style/login-portal-aw8-methods.css */

.page-login-portal-aw8-methods {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f4f7f6;
}

.page-login-portal-aw8-methods__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-login-portal-aw8-methods__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #0056b3 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login-portal-aw8-methods__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: page-login-portal-aw8-methods__hero-pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-login-portal-aw8-methods__hero-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0.5; }
}

.page-login-portal-aw8-methods__hero-section .page-login-portal-aw8-methods__container {
    position: relative;
    z-index: 1;
}

.page-login-portal-aw8-methods__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFC107;
}

.page-login-portal-aw8-methods__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-login-portal-aw8-methods__hero-button {
    display: inline-block;
    background-color: #FFC107;
    color: #007BFF;
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-login-portal-aw8-methods__hero-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-login-portal-aw8-methods__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-login-portal-aw8-methods__section-title {
    font-size: 2.2em;
    color: #007BFF;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-login-portal-aw8-methods__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107;
    border-radius: 2px;
}

.page-login-portal-aw8-methods__subsection-title {
    font-size: 1.8em;
    color: #0056b3;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFC107;
    padding-left: 15px;
}

.page-login-portal-aw8-methods__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
}

.page-login-portal-aw8-methods__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.page-login-portal-aw8-methods__feature-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login-portal-aw8-methods__feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-login-portal-aw8-methods__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-login-portal-aw8-methods__card-title {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-login-portal-aw8-methods__card-button {
    display: inline-block;
    background-color: #007BFF;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background-color 0.3s ease;
}

.page-login-portal-aw8-methods__card-button:hover {
    background-color: #0056b3;
}

.page-login-portal-aw8-methods__ordered-list,
.page-login-portal-aw8-methods__unordered-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-login-portal-aw8-methods__ordered-list li,
.page-login-portal-aw8-methods__unordered-list li {
    background-color: #f0f8ff;
    border-left: 4px solid #007BFF;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #333;
    position: relative;
    counter-increment: list-item-counter;
}

.page-login-portal-aw8-methods__ordered-list li::before {
    content: counter(list-item-counter) ". ";
    font-weight: bold;
    color: #FFC107;
    margin-right: 8px;
    font-size: 1.1em;
}

.page-login-portal-aw8-methods__unordered-list li {
    border-left-color: #FFC107;
}

.page-login-portal-aw8-methods__unordered-list li::before {
    content: '\2022'; /* Bullet point */
    font-weight: bold;
    color: #007BFF;
    margin-right: 8px;
    font-size: 1.2em;
}

.page-login-portal-aw8-methods__ordered-list li p,
.page-login-portal-aw8-methods__unordered-list li p {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 0.95em;
}

.page-login-portal-aw8-methods__inline-button {
    display: inline-block;
    background-color: #FFC107;
    color: #007BFF;
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.page-login-portal-aw8-methods__inline-button:hover {
    background-color: #e0a800;
}

.page-login-portal-aw8-methods__image-wrapper {
    text-align: center;
    margin: 40px 0;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login-portal-aw8-methods__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
    display: block;
    margin: 0 auto 15px auto;
}

.page-login-portal-aw8-methods__image-caption {
    font-style: italic;
    color: #6c757d;
    font-size: 0.9em;
}

.page-login-portal-aw8-methods__security-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.page-login-portal-aw8-methods__tip-item {
    background-color: #e6f7ff;
    border: 1px solid #b3e0ff;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 123, 255, 0.1);
}

.page-login-portal-aw8-methods__tip-item h4 {
    color: #007BFF;
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-login-portal-aw8-methods__tip-item p {
    color: #495057;
    font-size: 0.95em;
}

.page-login-portal-aw8-methods__tip-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-login-portal-aw8-methods__faq {
    margin-top: 40px;
}

.page-login-portal-aw8-methods__faq-item {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-login-portal-aw8-methods__faq-question {
    font-size: 1.25em;
    color: #007BFF;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-login-portal-aw8-methods__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFC107;
    transition: transform 0.3s ease;
}

.page-login-portal-aw8-methods__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-login-portal-aw8-methods__faq-answer {
    font-size: 1.0em;
    color: #495057;
    margin-top: 10px;
    display: none;
    padding-top: 10px;
    border-top: 1px solid #e9ecef;
}

.page-login-portal-aw8-methods__faq-question.active + .page-login-portal-aw8-methods__faq-answer {
    display: block;
}

.page-login-portal-aw8-methods__cta-section {
    background: linear-gradient(90deg, #007BFF, #0056b3);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
    margin-top: 60px;
    box-shadow: inset 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-login-portal-aw8-methods__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFC107;
}

.page-login-portal-aw8-methods__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-login-portal-aw8-methods__cta-button {
    display: inline-block;
    background-color: #FFC107;
    color: #007BFF;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-login-portal-aw8-methods__cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-login-portal-aw8-methods__hero-title {
        font-size: 2.2em;
    }
    .page-login-portal-aw8-methods__hero-description {
        font-size: 1.1em;
    }
    .page-login-portal-aw8-methods__section-title {
        font-size: 1.8em;
    }
    .page-login-portal-aw8-methods__subsection-title {
        font-size: 1.5em;
    }
    .page-login-portal-aw8-methods__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-login-portal-aw8-methods__hero-section,
    .page-login-portal-aw8-methods__content-section,
    .page-login-portal-aw8-methods__cta-section {
        padding: 40px 0;
    }
    .page-login-portal-aw8-methods__hero-title {
        font-size: 1.8em;
    }
    .page-login-portal-aw8-methods__hero-description {
        font-size: 1em;
    }
    .page-login-portal-aw8-methods__hero-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-login-portal-aw8-methods__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-login-portal-aw8-methods__security-tips {
        grid-template-columns: 1fr;
    }
    .page-login-portal-aw8-methods__section-title {
        font-size: 1.6em;
    }
    .page-login-portal-aw8-methods__subsection-title {
        font-size: 1.3em;
    }
    .page-login-portal-aw8-methods__cta-title {
        font-size: 1.8em;
    }
    .page-login-portal-aw8-methods__cta-button {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-login-portal-aw8-methods__hero-title {
        font-size: 1.5em;
    }
    .page-login-portal-aw8-methods__hero-description {
        font-size: 0.9em;
    }
    .page-login-portal-aw8-methods__section-title {
        font-size: 1.4em;
    }
    .page-login-portal-aw8-methods__subsection-title {
        font-size: 1.2em;
    }
    .page-login-portal-aw8-methods__paragraph,
    .page-login-portal-aw8-methods__ordered-list li,
    .page-login-portal-aw8-methods__unordered-list li,
    .page-login-portal-aw8-methods__faq-answer {
        font-size: 0.9em;
    }
    .page-login-portal-aw8-methods__cta-title {
        font-size: 1.5em;
    }
    .page-login-portal-aw8-methods__cta-description {
        font-size: 1em;
    }
}