/* style/register.css */

/* Base styles for the register page content */
.page-register {
    color: #333333; /* Dark text for light body background */
    background-color: #FFFFFF; /* Ensure content background is white if body is white */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Space for fixed header */
}

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

/* Hero Section */
.page-register__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 700px; /* Increased min-height to ensure content fits well */
    background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(0,0,0,0.7)); /* Darker overlay for text contrast */
    color: #FFFFFF;
}

.page-register__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1; /* Place behind content */
}

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

.page-register__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FCBC45; /* Highlight title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.page-register__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-register__form-wrapper {
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white background for form */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 40px auto 20px auto;
    color: #333333; /* Dark text for form content */
    text-align: left;
}

.page-register__form-group {
    margin-bottom: 20px;
}

.page-register__form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #000000;
}

.page-register__form-input {
    width: calc(100% - 20px);
    padding: 12px 10px;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}

.page-register__verification-input-group {
    display: flex;
    gap: 10px;
}

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

.page-register__get-code-button {
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

.page-register__get-code-button:hover {
    background-color: #333333;
}

.page-register__terms-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.page-register__terms-checkbox input[type="checkbox"] {
    margin-top: 5px; /* Align checkbox with text */
}

.page-register__terms-link {
    color: #000000;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-register__terms-link:hover {
    color: #FCBC45;
}

.page-register__register-button {
    width: 100%;
    padding: 15px;
    background-color: #FCBC45; /* Register button color */
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
}

.page-register__register-button:hover {
    background-color: #E0A030;
    color: #FFFFFF;
}

.page-register__login-prompt {
    text-align: center;
    margin-top: 20px;
    font-size: 1em;
    color: #333333;
}

.page-register__login-link {
    color: #000000;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-register__login-link:hover {
    color: #FCBC45;
}


/* General Section Styles */
.page-register__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.3;
}

.page-register__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-register__inline-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-register__inline-link:hover {
    text-decoration: underline;
    color: #E0A030;
}

/* Benefits Section */
.page-register__benefits-section {
    padding: 80px 0;
    background-color: #F8F8F8;
    text-align: center;
}

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

.page-register__benefit-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-register__benefit-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.page-register__benefit-title::before {
    content: '•'; /* Simple bullet point for styling */
    color: #FCBC45;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

.page-register__benefit-text {
    color: #555555;
    font-size: 1em;
}

.page-register__benefits-image {
    display: block;
    margin: 60px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

/* Steps Section */
.page-register__steps-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-register__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    counter-reset: step-counter; /* Initialize counter */
}

.page-register__step-item {
    background-color: #F8F8F8;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
    transition: background-color 0.3s ease;
}

.page-register__step-item:hover {
    background-color: #F0F0F0;
}

.page-register__step-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    padding-left: 40px; /* Space for step number */
    position: relative;
}

.page-register__step-title::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    background-color: #FCBC45;
    color: #000000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1em;
    position: absolute;
    left: 0;
    top: 0;
}

.page-register__step-text {
    color: #555555;
    font-size: 1em;
}

.page-register__steps-image {
    display: block;
    margin: 60px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

/* Conditions Section */
.page-register__conditions-section {
    padding: 80px 0;
    background-color: #F8F8F8;
}

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

.page-register__condition-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-register__condition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-register__condition-title {
    font-size: 1.4em;
    color: #000000;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.page-register__condition-title::before {
    content: '•';
    color: #000000; /* Dark bullet for conditions */
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: -2px;
}

.page-register__condition-text {
    color: #555555;
    font-size: 1em;
}

.page-register__conditions-image {
    display: block;
    margin: 60px auto 0 auto;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    min-height: 200px;
}

/* FAQ Section */
.page-register__faq-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-register__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-register__faq-item {
    background-color: #F8F8F8;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-register__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000000;
    cursor: pointer;
    background-color: #EFEFEF;
    border-bottom: 1px solid #E0E0E0;
    transition: background-color 0.3s ease;
}