/* style/login.css */

/* Base styles for the login page, ensuring light text on the dark body background */
.page-login {
    color: #ffffff; /* Light text for the dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-login__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #1a1a2e; /* Ensure dark background for hero section */
    overflow: hidden; /* Prevent content overflow */
}

.page-login__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

.page-login__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-login__hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    z-index: 1; /* Ensure content is above any decorative background elements */
    color: #ffffff; /* Ensure text is white on dark background */
}

.page-login__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive font size for H1 */
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFF00; /* Register and Login Font color */
    line-height: 1.2;
}

.page-login__description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #ffffff;
}