/* style/register.css */
.page-register {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
}

/* HERO Section */
.page-register__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Adjust based on shared.css body padding */
    padding-bottom: 60px;
    background: linear-gradient(135deg, #003366, #0a0a0a); /* Main color blend with dark body bg */
    text-align: center;
    overflow: hidden;
}

.page-register__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-register__main-title {
    font-size: 42px;
    font-weight: bold;
    color: #FFD700; /* Gold accent for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-register__intro-text {
    font-size: 18px;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__form-container {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background */
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.page-register__form-title {
    font-size: 28px;
    color: #FFD700; /* Gold accent */
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-register__registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-register__form-group {
    text-align: left;
}

.page-register__form-label {
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
}

.page-register__form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #0055aa; /* Darker blue border */
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3); /* Darker input background */
    color: #ffffff;
    font-size: 16px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
    box-sizing: border-box;
}

.page-register__form-input::placeholder {
    color: #cccccc;
}

.page-register__form-input:focus {
    border-color: #FFD700; /* Gold focus */
    background-color: rgba(0, 0, 0, 0.5);
    outline: none;
}

.page-register__captcha-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-register__captcha-input {
    flex-grow: 1;
}

.page-register__captcha-image {
    width: 100px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
    border: 1px solid #0055aa;
    vertical-align: middle;
}

.page-register__form-agreement {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    text-align: left;
}

.page-register__checkbox {
    margin-top: 4px; /* Align checkbox with text */
    flex-shrink: 0;
}

.page-register__agreement-label {
    font-size: 14px;
    color: #f0f0f0;
}

.page-register__agreement-link {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-register__agreement-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.page-register__submit-button {
    width: 100%;
    padding: 15px 25px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    margin-top: 20px;
}

/* Benefits Section */
.page-register__benefits-section {
    padding: 80px 20px;
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff; /* Light text */
}

.page-register__container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-register__section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #FFD700; /* Gold accent */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-register__section-description {
    font-size: 18px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #f0f0f0;
}

.page-register__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-register__benefit-card {
    background: #003366; /* Main brand color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-register__benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-register__benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    /* No filter to change color */
}

.page-register__benefit-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700; /* Gold accent */
    margin-bottom: 15px;
}

.page-register__benefit-text {
    font-size: 16px;
    color: #f0f0f0;
}

/* Steps Section */
.page-register__steps-section {
    padding: 80px 20px;
    background-color: #002244; /* Slightly darker main color */
    color: #ffffff;
}

.page-register__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-register__step-card {
    background: #003366; /* Main brand color */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.page-register__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700; /* Gold accent */
    color: #003366; /* Dark blue text */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    border: 3px solid #003366;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-register__step-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 20px; /* Space for step number */
    margin-bottom: 20px;
    /* No filter to change color */
}

.page-register__step-title {
    font-size: 22px;
    font-weight: bold;
    color: #FFD700; /* Gold accent */
    margin-bottom: 15px;
}

.page-register__step-text {
    font-size: 16px;
    color: #f0f0f0;
}

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

.page-register__cta-button {
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    display: inline-block; /* Ensure button-like behavior for anchor tags */
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-register__btn-primary {
    background: #FFD700; /* Gold button */
    color: #003366; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-register__btn-primary:hover {
    background: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-register__btn-secondary {
    background: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-register__btn-secondary:hover {
    background: #FFD700; /* Gold background */
    color: #003366; /* Dark blue text */
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Important Notes Section */
.page-register__important-notes-section {
    padding: 80px 20px;
    background-color: #0a0a0a; /* Dark background */
    color: #ffffff;
}

.page-register__notes-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.page-register__note-item {
    background: #003366; /* Main brand color */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}