.page-login {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-login__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
    text-align: center;
    overflow: hidden; /* Ensure content doesn't spill */
}

.page-login__hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 675px; /* Max height for hero image */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px; /* Slight rounding for aesthetic */
}

.page-login__hero-content {
    padding: 20px;
    position: relative; /* Ensure text is within flow, not overlaying */
    z-index: 1;
}

.page-login__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 size */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-login__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-login__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
}

.page-login__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-login__btn--secondary {
    background-color: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    border: 1px solid #6FA3FF;
}

.page-login__btn--secondary:hover {
    background-color: #4A8BFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-login__login-form-section {
    padding: 40px 0;
    margin-bottom: 40px;
    background-color: #F4F7FB; /* Background */
    text-align: center;
}

.page-login__section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

.page-login__section-title--gradient {
    background: linear-gradient(90deg, #2F6BFF, #6FA3FF); /* Example gradient for title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers not supporting text-fill-color */
}

.page-login__form {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #D6E2FF; /* Border color */
}

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

.page-login__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
}

.page-login__form-input {
    width: 100%;
    padding: 12px;
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 6px;
    font-size: 1em;
    box-sizing: border-box;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-login__form-input::placeholder {
    color: #999;
}

.page-login__form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.page-login__remember-me {
    display: flex;
    align-items: center;
}

.page-login__checkbox {
    margin-right: 8px;
    accent-color: #2F6BFF; /* Primary color for checkbox */
}

.page-login__checkbox-label {
    color: #1F2D3D; /* Text Main */
}

.page-login__forgot-password {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: bold;
}

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

.page-login__btn--submit {
    width: 100%;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    padding: 15px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-login__btn--submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-login__no-account-text {
    margin-top: 25px;
    color: #1F2D3D; /* Text Main */
}

.page-login__register-link {
    color: #2F6BFF; /* Primary color */
    text-decoration: none;
    font-weight: bold;
}

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

.page-login__features-section {
    padding: 40px 0;
    margin-bottom: 40px;
    background-color: #F4F7FB; /* Background */
}

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

.page-login__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-login__feature-icon {
    width: 100%; /* Ensure images fill card width */
    height: auto;
    min-width: 200px; /* Min size for content images */
    min-height: 200px; /* Min size for content images */
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-login__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

.page-login__feature-description {
    color: #1F2D3D; /* Text Main */
}

.page-login__more-info-cta {
    margin-top: 40px;
    text-align: center;
}

.page-login__cta-download-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #2F6BFF 0%, #6FA3FF 100%); /* Primary to Auxiliary gradient */
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-login__cta-download-section .page-login__section-title {
    color: #FFFFFF; /* Override for gradient title */
    -webkit-text-fill-color: #FFFFFF; /* Ensure white text on gradient background */
    background: none; /* Remove gradient for text on gradient background */
}

.page-login__cta-download-section .page-login__description {
    margin-bottom: 30px;
}

.page-login__faq-section {
    padding: 40px 0;
    background-color: #F4F7FB; /* Background */
}

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

.page-login__faq-item {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-login__faq-question {
    font-size: 1.3em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.page-login__faq-question--active {
    color: #2F6BFF;
}

.page-login__faq-answer {
    color: #1F2D3D; /* Text Main */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-login__contact-support {
    margin-top: 40px;
    text-align: center;
    color: #1F2D3D; /* Text Main */
}

.page-login__contact-support p {
    margin-bottom: 20px;
    font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-login__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-login__description {
        font-size: 1em;
    }

    .page-login__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-login__btn {
        width: 100%;
    }

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

    .page-login__form {
        padding: 25px;
    }

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

    /* Mobile content image constraint */
    .page-login img {
        max-width: 100%;
        height: auto;
    }
}