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

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

.page-login__container--center {
    text-align: center;
}

/* Hero Section */
.page-login__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #f0f0f0;
    overflow: hidden;
}

.page-login__hero-image-wrapper {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limit height for desktop */
    overflow: hidden;
    margin-bottom: 20px; /* Space between image and content */
}

.page-login__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover for desktop to fill space */
    display: block;
}

.page-login__hero-content {
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 0 15px;
}

.page-login__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
    color: #26A9E0;
    margin-bottom: 15px;
    line-height: 1.2;
    font-weight: 700;
}

.page-login__subtitle {
    font-size: 1.15rem;
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-login__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    box-sizing: border-box; /* Crucial for button max-width */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-login__btn-primary {
    background-color: #EA7C07; /* Login button color */
    color: #FFFFFF;
}

.page-login__btn-primary:hover {
    background-color: #d66f06;
}

.page-login__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border-color: #26A9E0;
}

.page-login__btn-secondary:hover {
    background-color: #e0f2ff;
    color: #1e8dc0;
    border-color: #1e8dc0;
}

/* General Section Styling */
.page-login__section {
    padding: 60px 0;
}

.page-login__light-bg {
    background-color: #FFFFFF;
    color: #333333;
}

.page-login__dark-bg {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-login__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #26A9E0;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.page-login__section-title--white {
    color: #FFFFFF;
}

.page-login__section-description {
    font-size: 1.05rem;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-login__sub-section-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: #26A9E0;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: left;
}

/* Login Form Section */
.page-login__login-form-section {
    padding-bottom: 80px;
}

.page-login__form-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.page-login__form-image {
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.page-login__login-form {
    flex: 1;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

.page-login__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

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

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

.page-login__forgot-password {
    color: #26A9E0;
    text-decoration: none;
}

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

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

.page-login__checkbox {
    margin-right: 8px;
}

.page-login__checkbox-label {
    color: #555555;
}

.page-login__btn-submit {
    width: 100%;
    background-color: #EA7C07;
    color: #FFFFFF;
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-login__btn-submit:hover {
    background-color: #d66f06;
}

.page-login__no-account {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
    color: #555555;
}

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

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

.page-login__step-list,
.page-login__bullet-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__step-list {
    counter-reset: step-counter;
}

.page-login__step-list .page-login__list-item {
    position: relative;
    margin-bottom: 15px;
    padding-left: 35px;
    font-size: 1rem;
    color: #333333;
}

.page-login__step-list .page-login__list-item::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #26A9E0;
    color: #FFFFFF;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 0.9rem;
}

.page-login__bullet-list .page-login__list-item {
    position: relative;
    margin-bottom: 10px;
    padding-left: 25px;
    font-size: 1rem;
    color: #333333;
}

.page-login__bullet-list .page-login__list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #26A9E0;
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: bold;
}

/* Why Choose Us Section */
.page-login__why-choose-us {
    padding-bottom: 80px;
}

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

.page-login__feature-card {
    background-color: rgba(255, 255, 255, 0.1); /* Slight white overlay for dark background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    color: #FFFFFF; /* Text color for dark background */
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.page-login__feature-card .page-login__card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-login__feature-card .page-login__card-description {
    font-size: 1rem;
    color: #e0e0e0;
}

/* Security Section */
.page-login__security-section {
    padding-bottom: 80px;
}

.page-login__security-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-login__security-text {
    flex: 1;
}

.page-login__security-image {
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-login__security-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Support Section */
.page-login__support-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-login__support-text {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 25px;
}

.page-login__contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 30px;
    max-width: 600px;
}

.page-login__contact-list .page-login__list-item {
    font-size: 1rem;
    margin-bottom: 10px;
    color: #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.page-login__contact-list .page-login__list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #FFFFFF;
    font-weight: bold;
}

/* FAQ Section */
.page-login__faq-section {
    padding-bottom: 80px;
}

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

details.page-login__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-login__faq-item summary.page-login__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-login__faq-item summary.page-login__faq-question::-webkit-details-marker {
  display: none;
}
details.page-login__faq-item summary.page-login__faq-question:hover {
  background: #f5f5f5;
}