/* style/login.css */

/* Base styles for the login page */
.page-login {
    color: #ffffff; /* Text color for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-login__section-title {
    font-size: 2.5em;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

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

/* Hero Section */
.page-login__hero-section {
    position: relative;
    padding: 80px 0;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #017439, #0a0a0a); /* Brand color gradient */
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.page-login__hero-content {
    flex: 1;
    padding-right: 40px;
}

.page-login__hero-section .page-login__container {
    display: flex;
    align-items: center;
    gap: 40px;
}}