/* style/login-portal-history.css */
.page-login-portal-history {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #0A192F; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-login-portal-history__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login-portal-history__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.page-login-portal-history__hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.page-login-portal-history__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-login-portal-history__description {
    font-size: 1.15em;
    color: #D0D0D0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-login-portal-history__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-login-portal-history__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-login-portal-history__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A192F; /* Dark blue */
}

.page-login-portal-history__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-login-portal-history__btn--secondary {
    background-color: #0A192F; /* Dark blue */
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-login-portal-history__btn--secondary:hover {
    background-color: #1a3a60;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-login-portal-history__section {
    padding: 60px 0;
    background-color: #0A192F;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-login-portal-history__section:nth-of-type(even) {
    background-color: #122a47; /* Slightly lighter dark blue for contrast */
}

.page-login-portal-history__subtitle {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-login-portal-history__list,
.page-login-portal-history__steps,
.page-login-portal-history__tips {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-login-portal-history__list li,
.page-login-portal-history__steps li,
.page-login-portal-history__tips li {
    background-color: #1a3a60; /* Darker blue for list items */
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #FFD700;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-login-portal-history__list li strong,
.page-login-portal-history__steps li strong,
.page-login-portal-history__tips li strong {
    color: #FFD700;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-login-portal-history__sub-list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 10px;
    color: #D0D0D0;
}

.page-login-portal-history__sub-list li {
    background-color: transparent;
    border-left: none;
    box-shadow: none;
    padding: 5px 0;
    margin-bottom: 5px;
}

.page-login-portal-history__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid #FFD700;
}

.page-login-portal-history__table-wrapper {
    overflow-x: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-login-portal-history__login-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px; /* Ensure table is readable on smaller screens */
}

.page-login-portal-history__login-table th,
.page-login-portal-history__login-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-login-portal-history__login-table th {
    background-color: #FFD700;
    color: #0A192F;
    font-weight: bold;
    font-size: 1.1em;
    text-transform: uppercase;
}

.page-login-portal-history__login-table td {
    background-color: #1a3a60;
    color: #E0E0E0;
}

.page-login-portal-history__login-table tbody tr:nth-child(odd) td {
    background-color: #0A192F;
}

.page-login-portal-history__login-table tbody tr:hover td {
    background-color: #2a4e7c;
}

.page-login-portal-history__status--success {
    color: #4CAF50; /* Green for success */
    font-weight: bold;
}

.page-login-portal-history__status--failed {
    color: #F44336; /* Red for failed */
    font-weight: bold;
}

.page-login-portal-history__note {
    font-style: italic;
    font-size: 0.95em;
    color: #B0B0B0;
    margin-top: 20px;
    text-align: center;
}

.page-login-portal-history__faq-item {
    background-color: #1a3a60;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-login-portal-history__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-login-portal-history__faq-answer {
    color: #E0E0E0;
    font-size: 1.0em;
}

.page-login-portal-history a {
    color: #FFD700;
    text-decoration: none;
}

.page-login-portal-history a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-login-portal-history__title {
        font-size: 2.8em;
    }
    .page-login-portal-history__subtitle {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-login-portal-history__hero {
        padding: 60px 0 40px;
    }
    .page-login-portal-history__title {
        font-size: 2.2em;
    }
    .page-login-portal-history__description {
        font-size: 1em;
    }
    .page-login-portal-history__btn {
        padding: 12px 25px;
        font-size: 0.95em;
    }
    .page-login-portal-history__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-login-portal-history__list li,
    .page-login-portal-history__steps li,
    .page-login-portal-history__tips li,
    .page-login-portal-history__faq-item {
        padding: 15px;
        font-size: 0.95em;
    }
    .page-login-portal-history__faq-question {
        font-size: 1.1em;
    }
    .page-login-portal-history__login-table th,
    .page-login-portal-history__login-table td {
        padding: 10px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .page-login-portal-history__title {
        font-size: 1.8em;
    }
    .page-login-portal-history__subtitle {
        font-size: 1.6em;
    }
    .page-login-portal-history__hero {
        padding: 40px 0 30px;
    }
    .page-login-portal-history__btn {
        width: 100%;
        text-align: center;
    }
    .page-login-portal-history__section {
        padding: 40px 0;
    }
}