/* style/register.css */
/* Custom properties from color scheme */
:root {
    --page-register-primary-color: #11A84E;
    --page-register-secondary-color: #22C768;
    --page-register-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-register-card-bg: #11271B;
    --page-register-background: #08160F;
    --page-register-text-main: #F2FFF6;
    --page-register-text-secondary: #A7D9B8;
    --page-register-border-color: #2E7A4E;
    --page-register-glow-color: #57E38D;
    --page-register-gold-color: #F2C14E;
    --page-register-divider-color: #1E3A2A;
    --page-register-deep-green: #0A4B2C;
}

.page-register {
    background-color: var(--page-register-background); /* Very dark background */
    color: var(--page-register-text-main); /* Light text for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Reset default margin for main content */
.page-content.page-register {
    padding-top: 0; /* body handles var(--header-offset) */
}

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

.page-register__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image on top, content below */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--page-register-deep-green); /* A darker green for hero section background */
}

.page-register__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain max width for image */
    margin-bottom: 30px; /* Space between image and text */
}

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

.page-register__hero-content {
    max-width: 800px;
    padding: 0 20px;
    color: var(--page-register-text-main); /* Light text */
}

.page-register__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--page-register-text-main);
}

.page-register__hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--page-register-text-secondary);
}

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