.page-login {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
}

.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 for first section */
    padding-bottom: 40px;
    background-color: #111111; /* Card BG for hero section */
    position: relative;
    overflow: hidden;
}

.page-login__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for hero image */
    overflow: hidden;
}

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

.page-login__hero-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}

.page-login__main-title {
    font-size: clamp(2.2em, 4vw, 3.5em);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #F2C14E, #FFD36B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

.page-login__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-login__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-login__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1.05em;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
}

.page-login__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

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

.page-login__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #FFD36B, #F2C14E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    letter-spacing: 0.5px;
}

.page-login__form-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #3A2A12;
}

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

.page-login__form-label {
    display: block;
    margin-bottom: 10px;
    font-size: 1em;
    color: #FFF6D6;
    font-weight: 600;
}

.page-login__form-input {
    width: calc(100% - 24px);
    padding: 12px;
    border: 1px solid #3A2A12;
    border-radius: 6px;
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.page-login__form-input::placeholder {
    color: rgba(255, 246, 214, 0.6);
}

.page-login__form-input:focus {
    border-color: #F2C14E;
    outline: none;
}

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

.page-login__forgot-password {
    color: #FFD36B;
    text-decoration: none;
    font-size: 0.95em;
    transition: color 0.3s ease;
}

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

.page-login__btn--submit {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-login__btn--submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

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

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

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

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

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

.page-login__benefit-card {
    background-color: #111111;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-login__benefit-icon {
    width: 200px; /* Minimum size 200x200px */
    height: 200px; /* Minimum size 200x200px */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-login__benefit-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #F2C14E;
}

.page-login__benefit-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: #FFF6D6;
}

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

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

.page-login__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-login__faq-question {
    font-size: 1.25em;
    font-weight: bold;
    color: #FFD36B;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-login__faq-question::after {
    content: '+';
    font-size: 1.5em;
    color: #F2C14E;
    transition: transform 0.3s ease;
}

.page-login__faq-item.active .page-login__faq-question::after {
    transform: rotate(45deg);
}

.page-login__faq-answer {
    font-size: 1em;
    color: #FFF6D6;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding-top: 0;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-login__main-title {
        font-size: clamp(2em, 5vw, 3em);
    }
    .page-login__section-title {
        font-size: 2em;
    }
    .page-login__benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-login__hero-content {
        margin-top: 10px;
    }
    .page-login__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-login__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-login__form-card {
        padding: 30px;
    }
    .page-login__form-input {
        width: calc(100% - 20px);
    }
    .page-login__benefits-grid {
        grid-template-columns: 1fr;
    }
    .page-login__benefit-icon {
        width: 200px; /* Ensure minimum size */
        height: 200px; /* Ensure minimum size */
    }
    /* Mobile overflow prevention for images */
    .page-login__hero-image,
    .page-login__benefit-icon {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-login__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-login__section-title {
        font-size: 1.8em;
    }
    .page-login__form-card {
        padding: 20px;
    }
    .page-login__btn {
        width: 90%;
    }
    .page-login__benefit-icon {
        width: 200px;
        height: 200px;
    }
    .page-login__faq-question {
        font-size: 1.1em;
    }
    .page-login__faq-answer {
        font-size: 0.9em;
    }
}