/* style/login.css */
.page-login {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light body background */
    background-color: #f8f8f8;
}

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

.page-login__hero-section {
    background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Darker gradient for hero */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-login__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-login__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__login-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.page-login__login-form {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 400px;
    text-align: left;
    color: #1A202C;
}

.page-login__form-group {
    margin-bottom: 20px;
}

.page-login__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1A202C;
}

.page-login__form-input {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    color: #333333;
}

.page-login__form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-login__submit-button {
    background-color: #FFD700;
    color: #1A202C;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
    flex-grow: 1;
    text-align: center;
    margin-right: 10px;
}

.page-login__submit-button:hover {
    background-color: #e6c200;
}

.page-login__forgot-password-link {
    color: #1A202C;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.page-login__forgot-password-link:hover {
    color: #FFD700;
}

.page-login__register-prompt {
    margin-top: 25px;
    font-size: 0.95em;
    color: #1A202C;
}

.page-login__register-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-login__register-link:hover {
    color: #e6c200;
}

.page-login__image-overlay {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
}

.page-login__form-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-login__content-section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__content-section:nth-of-type(even) {
    background-color: #f0f0f0;
}

.page-login__section-title {
    font-size: 2em;
    color: #1A202C;
    margin-bottom: 30px;
    text-align: center;
}

.page-login__text-content {
    font-size: 1.05em;
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: justify;
}

.page-login__cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0 auto;
    background-color: #FFD700;
    color: #1A202C;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-login__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-login__ordered-list,
.page-login__unordered-list {
    list-style-type: none;
    padding: 0;
    margin: 20px 0;
}

.page-login__ordered-list .page-login__list-item {
    counter-increment: list-item-counter;
    margin-bottom: 25px;
    padding-left: 50px;
    position: relative;
}

.page-login__ordered-list .page-login__list-item::before {
    content: counter(list-item-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFD700;
    color: #1A202C;
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 1.2em;
}

.page-login__list-item-title {
    color: #1A202C;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.page-login__unordered-list .page-login__list-item {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.page-login__unordered-list .page-login__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFD700;
    font-size: 1.5em;
    line-height: 1;
}

.page-login__image-gallery {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-login__gallery-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-login__security-image,
.page-login__benefits-image,
.page-login__mobile-image,
.page-login__faq-image {
    display: block;
    margin: 40px auto;
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-login__faq-list {
    margin-top: 30px;
}

.page-login__faq-item {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-login__faq-question {
    width: 100%;
    background-color: #1A202C;
    color: #ffffff;
    padding: 18px 25px;
    text-align: left;
    font-size: 1.15em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-login__faq-question:hover {
    background-color: #2c3546;
}

.page-login__faq-icon {
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-login__faq-item.active .page-login__faq-icon {
    transform: rotate(180deg);
}

.page-login__faq-answer {
    padding: 0 25px;
    background-color: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-login__faq-item.active .page-login__faq-answer {
    max-height: 200px; /* Adjust as needed for content */
    padding: 15px 25px;
}

.page-login__faq-answer p {
    margin: 0;
    color: #333333;
}

.page-login__cta-button--bottom {
    margin-top: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-login__main-title {
        font-size: 2em;
    }

    .page-login__hero-description {
        font-size: 1em;
    }

    .page-login__login-form-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .page-login__form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-login__submit-button {
        margin-right: 0;
        width: 100%;
    }

    .page-login__section-title {
        font-size: 1.7em;
    }

    .page-login__ordered-list .page-login__list-item {
        padding-left: 40px;
    }

    .page-login__ordered-list .page-login__list-item::before {
        width: 30px;
        height: 30px;
        font-size: 1.1em;
    }

    .page-login__list-item-title {
        font-size: 1.1em;
    }

    .page-login__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }

    .page-login__faq-answer {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .page-login__main-title {
        font-size: 1.6em;
    }

    .page-login__hero-section {
        padding: 60px 0;
    }

    .page-login__login-form {
        padding: 30px 20px;
    }

    .page-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-login__container {
        padding: 15px;
    }
}