.page-login {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #000000; /* Ensure body background is respected if not handled by shared */
}

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

.page-login__container--hero {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh; /* Adjust as needed */
    padding-top: var(--header-offset, 120px); /* Apply header offset */
}

/* Hero Section */
.page-login__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    min-height: 80vh;
    color: #ffffff;
}

.page-login__hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.page-login__hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Removed filter: brightness(0.5) to comply with filter restriction */
}

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