/* style/login.css */

/* General styles for the login page */
.page-login {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background handled by shared.css */
    padding-top: 10px; /* Small top padding for the first section, relying on body padding-top from shared.css */
}

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

.page-login__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #ffffff; /* Default for dark sections */
    line-height: 1.2;
}

.page-login__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: #f0f0f0; /* Slightly lighter for descriptions */
}

/* Hero Section */
.page-login__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    justify-content: center;
    min-height: 500px; /* Adjust as needed */
    overflow: hidden;
    margin-bottom: 40px;
}

.page-login__hero-image-container {
    width: 100%;
    max-height: 600px; /* Limit image height */
    overflow: hidden;
}

.page-login__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Cover the container */
}

.page-login__hero-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px; /* Space between image and content */
}

.page-login__hero-content {
    background-color: #ffffff; /* Light background for content */
    color: #333333; /* Dark text for light background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    text-align: center;
}

.page-login__main-title {
    font-size: 2.8em;
    font-weight: 700;
    color: #26A9E0; /* Brand color for title */
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-login__intro-text {
    font-size: 1.2em;
    margin-bottom: 30px;
}

.page-login__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-login__btn-primary,
.page-login__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-login__btn-primary {
    background-color: #EA7C07; /* Custom color for Login */
    color: #ffffff;
    border: 2px solid transparent;
}

.page-login__btn-primary:hover {
    background-color: #d16b06;
}