:root {
    --primary-color: #FF8C1A; /* Main brand color */
    --secondary-color: #FFA53A; /* Accent brand color */
    --bg-color: #0D0E12; /* Custom background */
    --card-bg-color: #17191F; /* Custom card background */
    --text-main-color: #FFF3E6; /* Custom main text color */
    --border-color: #A84F0C; /* Custom border color */
    --glow-color: #FFB04D; /* Custom glow color */
    --deep-orange-color: #D96800; /* Custom deep orange */
    --button-gradient: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
}

.page-login {
    font-family: 'Arial', sans-serif;
    color: var(--text-main-color); /* Default text color for the page */
    background-color: var(--bg-color); /* Default background for the page */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

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

.page-login__section-title {
    font-size: 3em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(255, 140, 26, 0.4);
    line-height: 1.2;
}

.page-login__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: rgba(255, 243, 230, 0.8);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-login__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

/* HERO Section */
.page-login__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: var(--bg-color);
    overflow: hidden;
}

.page-login__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%; /* Ensure it takes full width up to max-width */
}

.page-login__hero-image {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-login__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    filter: none !important;
}

.page-login__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-login__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em); /* Use clamp for H1 */
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 15px rgba(255, 140, 26, 0.6);
}

.page-login__hero-description {
    font-size: 1.2em;
    color: rgba(255, 243, 230, 0.9);
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.page-login__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--button-gradient);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Button responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-login__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 140, 26, 0.6);
}

/* Form Section */
.page-login__form-section {
    background-color: var(--bg-color);
    padding: 80px 20px;
    border-top: 1px solid var(--border-color);
}