/* style/login.css */

/* Base Styles for .page-login */
.page-login {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Dark body background #1a1a1a, so use light text */
    background-color: transparent; /* Shared.css will define body background */
}

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

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

.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); /* Apply header offset here */
    background-color: #0d0d0d; /* Slightly darker than body for visual depth */
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.page-login__hero-section .page-login__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.page-login__hero-content {
    flex: 1;
    max-width: 600px;
}

.page-login__main-title {
    font-size: 3.2em;
    color: #FFFF00; /* Use specific yellow for main title */
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
}

.page-login__hero-description {
    font-size: 1.2em;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-login__login-card {
    background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for card on dark background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 450px;
    width: 100%;
    margin-left: auto; /* Center card if it's the only element */
}

.page-login__card-title {
    font-size: 1.8em;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.page-login__form-label {
    display: block;
    margin-bottom: 8px;
    color: #f0f0f0;
    font-size: 1em;
}

.page-login__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #FFFFFF;
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.page-login__form-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

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

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

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

.page-login__checkbox {
    margin-right: 8px;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    top: -1px;
}

.page-login__checkbox:checked {
    background-color: #017439;
    border-color: #017439;
}

.page-login__checkbox:checked::before {
    content: '✔';
    display: block;
    color: #FFFFFF;
    font-size: 14px;
    text-align: center;
    line-height: 16px;
}

.page-login__checkbox-label {
    color: #f0f0f0;
    cursor: pointer;
}

.page-login__forgot-password {
    color: #FFFF00; /* Yellow for forgotten password link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-login__forgot-password:hover {
    color: #017439;
}