.page-login {
    color: #333333; /* Default dark text for light body background */
    font-family: Arial, sans-serif;
}

.page-login__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

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

.page-login__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: #ffffff;
}

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

.page-login__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-login__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 15px 30px;
    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__form-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
}

.page-login__form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.page-login__section-title {
    font-size: 2.2em;
    color: #1E90FF;
    margin-bottom: 15px;
}

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

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

.page-login__form-group {
    text-align: left;
}

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

.page-login__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.page-login__form-input:focus {
    border-color: #1E90FF;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.2);
}

.page-login__form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9em;
}

.page-login__forgot-password {
    color: #1E90FF;
    text-decoration: none;
}

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

.page-login__remember-me {
    color: #555555;
}

.page-login__remember-me input {
    margin-right: 5px;
}

.page-login__submit-button {
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-login__register-prompt {
    margin-top: 25px;
    color: #555555;
}

.page-login__register-link {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

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

.page-login__process-section {
    padding: 60px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.page-login__process-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-login__process-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-login__process-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-login__process-item:hover {
    transform: translateY(-5px);
}

.page-login__process-step-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-login__process-step-description {
    color: #555555;
    line-height: 1.6;
}

.page-login__security-section {
    padding: 60px 20px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.page-login__security-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-login__security-content {
    flex: 1;
    min-width: 300px;
}

.page-login__security-section .page-login__section-title {
    color: #FFD700;
}

.page-login__security-section .page-login__section-description {
    color: #e0e0e0;
}

.page-login__security-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-login__security-item {
    margin-bottom: 20px;
}

.page-login__security-feature-title {
    font-size: 1.3em;
    color: #1E90FF;
    margin-bottom: 8px;
}

.page-login__security-feature-description {
    color: #cccccc;
    line-height: 1.6;
}

.page-login__security-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-login__security-image {
    width: 100%;
    height: auto;
    max-width: 600px; /* Example max-width for image in content area */
    border-radius: 10px;
    object-fit: cover;
}

.page-login__faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

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

.page-login__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-login__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-login__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.1em;
    font-weight: bold;
    color: #333333;
    cursor: pointer;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
}

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

.page-login__faq-toggle {
    font-size: 1.5em;
    color: #1E90FF;
    transition: transform 0.3s ease;
}

.page-login__faq-item[open] .page-login__faq-toggle {
    transform: rotate(45deg);
}

.page-login__faq-answer {
    padding: 15px 25px 20px;
    background-color: #fefefe;
    color: #555555;
    line-height: 1.6;
    border-top: 1px solid #e9e9e9;
}

.page-login__promo-section {
    padding: 60px 20px;
    background-color: #1E90FF;
    color: #ffffff;
    text-align: center;
}

.page-login__promo-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
    background: linear-gradient(90deg, #1E90FF, #0056b3);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-login__promo-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-login__promo-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.page-login__promo-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-login__promo-description {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
}

.page-login__promo-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-login__hero-title {
        font-size: 2.5em;
    }
    .page-login__hero-description {
        font-size: 1.1em;
    }
    .page-login__process-list {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-login__hero-title {
        font-size: 2em;
    }
    .page-login__hero-description {
        font-size: 1em;
    }
    .page-login__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-login__section-title {
        font-size: 1.8em;
    }
    .page-login__section-description {
        font-size: 1em;
    }
    .page-login__form-container {
        padding: 30px;
    }
    .page-login__process-list {
        grid-template-columns: 1fr;
    }
    .page-login__security-container, .page-login__promo-container {
        flex-direction: column;
        text-align: center;
    }
    .page-login__security-content, .page-login__promo-content {
        text-align: center;
    }
    .page-login__promo-image, .page-login__security-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and do not cause overflow */
    }
    .page-login__promo-title {
        font-size: 1.6em;
    }
    .page-login__promo-description {
        font-size: 0.95em;
    }
    /* Ensure all images in content area are responsive and not smaller than 200px display size */
    .page-login img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum display size for all content images */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-login__hero-title {
        font-size: 1.6em;
    }
    .page-login__hero-description {
        font-size: 0.9em;
    }
    .page-login__form-container {
        padding: 20px;
    }
    .page-login__form-options {
        flex-direction: column;
        gap: 10px;
    }
}