.page-login {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color, #333333); /* Adapts to body bg */
    background-color: var(--bg-color); /* Inherits from shared.css */
}

/* Hero Section */
.page-login__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff; /* White text on dark/image background */
    text-align: center;
}

.page-login__hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.page-login__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: -1;
}

.page-login__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-login__login-card {
    background: rgba(0, 0, 0, 0.8);
    padding: 40px;
    border-radius: 10px;
    max-width: 450px;
    margin: 40px auto; /* Centering the login card */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    text-align: left;
}

.page-login__main-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFF00; /* Login/Register font color */
    line-height: 1.2;
    text-align: center;
}

.page-login__intro-text {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
    text-align: center;
}

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

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

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

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

.page-login__form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.page-login__btn-login {
    background-color: #C30808; /* Login button color */
    color: #FFFF00; /* Login button font color */
    padding: 14px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.page-login__btn-login:hover {
    background-color: #e02a2a;
    transform: translateY(-2px);
}

.page-login__forgot-password {
    color: #017439; /* Main brand color for link */
    text-decoration: none;
    font-size: 0.95em;
    text-align: center;
    display: block;
    transition: color 0.3s ease;
}

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

.page-login__register-cta {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.page-login__register-text {
    font-size: 1em;
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-login__btn-register {
    background-color: #C30808; /* Register button color */
    color: #FFFF00; /* Register button font color */
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
}

.page-login__btn-register:hover {
    background-color: #e02a2a;
    transform: translateY(-2px);
}

/* General Section Styling */
.page-login__section-title {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #017439; /* Main brand color */
}

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

.page-login__section-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-color, #333333);
}

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

.page-login__light-bg {
    background-color: #ffffff;
    color: #333333;
    padding: 60px 0;
}

.page-login__dark-bg {
    background-color: #017439; /* Main brand color */
    color: #ffffff;
    padding: 60px 0;
}

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

.page-login__benefit-item,
.page-login__experience-item,
.page-login__responsibility-item {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}