.page-login {
    padding-bottom: 50px;
    color: #FFF3E6;
    background-color: #0D0E12;
}

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

.page-login__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
    background-color: #100224; /* Darker background for hero */
}

.page-login__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Ensure it can go full width */
    margin-bottom: 20px;
}

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

.page-login__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-login__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFB04D; /* Use glow for main title */
    text-shadow: 0 0 8px rgba(255, 176, 77, 0.5);
    font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
}

.page-login__intro-text {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 30px;
}

.page-login__section-title {
    font-size: 2.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #FF8C1A;
    background: linear-gradient(90deg, #FF8C1A, #FFA53A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-login__form-section {
    padding: 60px 0;
    background-color: #0D0E12;
}

.page-login__form {
    background-color: #17191F; /* Card BG */
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #A84F0C; /* Border color */
}

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

.page-login__label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #FFF3E6;
}

.page-login__input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #A84F0C;
    border-radius: 5px;
    background-color: #0D0E12;
    color: #FFF3E6;
    font-size: 1em;
    box-sizing: border-box;
}

.page-login__input::placeholder {
    color: rgba(255, 243, 230, 0.6);
}

.page-login__form-options {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.page-login__forgot-password {
    color: #FFA53A;
    text-decoration: none;
    font-size: 0.95em;
}

.page-login__forgot-password:hover {
    text-decoration: underline;
    color: #FFB04D;
}

.page-login__submit-button {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 5px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.page-login__submit-button:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
    transform: translateY(-2px);
}

.page-login__register-prompt {
    text-align: center;
    margin-top: 30px;
    font-size: 1em;
    color: #FFF3E6;
}

.page-login__register-link {
    color: #FFA53A;
    text-decoration: none;
    font-weight: 600;
}

.page-login__register-link:hover {
    text-decoration: underline;
    color: #FFB04D;
}

.page-login__benefits-section {
    padding: 60px 0;
    background-color: #0D0E12;
}

.page-login__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-login__benefit-card {
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #A84F0C;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-login__benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-login__benefit-icon {
    width: 100%; /* Ensure images are not small icons */
    max-width: 300px; /* Recommended size for benefit icons */
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-login__benefit-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FF8C1A;
}

.page-login__benefit-description {
    font-size: 0.95em;
    line-height: 1.6;
    opacity: 0.8;
}

.page-login__faq-section {
    padding: 60px 0;
    background-color: #0D0E12;
}

.page-login__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-login__faq-item {
    background-color: #17191F; /* Card BG */
    border: 1px solid #A84F0C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-login__faq-question {
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: #FFF3E6;
    cursor: pointer;
    display: block;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-login__faq-question:hover {
    background-color: rgba(255, 140, 26, 0.1);
}

.page-login__faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFA53A;
    transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-login__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 243, 230, 0.8);
    border-top: 1px solid rgba(168, 79, 12, 0.3);
}

.page-login__faq-more {
    text-align: center;
    margin-top: 40px;
}

.page-login__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.2s ease;
}

.page-login__button--secondary {
    background-color: #D96800; /* Deep Orange */
    color: #FFF3E6;
    border: 1px solid #A84F0C;
}

.page-login__button--secondary:hover {
    background-color: #FF8C1A;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-login__hero-section {
        padding-bottom: 30px;
    }

    .page-login__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }

    .page-login__intro-text {
        font-size: 1em;
    }

    .page-login__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-login__form {
        padding: 30px;
    }

    .page-login__benefits-grid {
        grid-template-columns: 1fr;
    }

    .page-login__benefit-icon {
        max-width: 250px;
    }

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

    .page-login__faq-question::after {
        right: 20px;
    }

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

@media (max-width: 768px) {
    .page-login__container {
        padding: 15px;
    }

    .page-login__hero-image,
    .page-login__benefit-icon {
        max-width: 100%;
        height: auto;
    }

    /* Ensure all images within .page-login are responsive */
    .page-login img {
        max-width: 100%;
        height: auto;
    }

    .page-login__hero-content {
        padding: 0 15px;
    }

    .page-login__main-title {
        font-size: clamp(1.5em, 7vw, 2em);
    }

    .page-login__form-section,
    .page-login__benefits-section,
    .page-login__faq-section {
        padding: 40px 0;
    }

    .page-login__form {
        padding: 25px;
    }
}

@media (max-width: 549px) {
    .page-login__main-title {
        font-size: clamp(1.4em, 8vw, 1.8em);
    }

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

    .page-login__hero-section {
        padding-bottom: 20px;
    }
}

/* Ensure content area images are not smaller than 200px */
.page-login__benefit-icon {
    min-width: 200px;
    min-height: 200px;
}