/* Page Layout */
.page-early-access {
    background-color: var(--site-bg, var(--bg));
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Intro Section (Waves) */
.page-early-access .section-intro {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    /* Adjust height as needed, Resources page has min-height: 760px but might be too tall for just a form intro */
    min-height: 600px;
    background-image: url('/images/pages/waves-bg.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.page-early-access .section-intro .content-container {
    height: auto;
    /* Adjusted */
    padding-right: 420px;
    gap: 24px;
    display: block;
    padding-top: 100px;
    z-index: 4;
    position: relative;
}

.page-early-access .section-intro h1 {
    line-height: 1.3;
    text-align: left;
}

.page-early-access .section-intro p {
    line-height: 1.4;
    margin-top: 14px;
    text-align: left;
}

/* Form Section */
.page-early-access .section-form {
    background-color: #f5f6f7;
    /* Light gray usually */
    padding: 60px 0;
    flex-grow: 1;
}

.early-access-form {
    max-width: 600px;
    margin: 0 auto;

}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark-gray2);
    font-family: var(--font-maven);
    font-size: var(--fs-16);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-maven);
    font-size: var(--fs-16);
    background-color: #fff;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

/* Radio Group */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.radio-item input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--btn-bg);
}

.radio-text {
    font-family: var(--font-maven);
    font-size: var(--fs-16);
    color: var(--text-dark-gray2);
}

/* Submit Button */
.btn-submit {
    display: block;
    width: 200px;
    /* Narrower than before */
    margin: 32px auto 0;
    padding: 14px 0;
    background-color: var(--btn-bg);
    color: #fff;
    border: none;
    border-radius: 9999px;
    /* Pill shape */
    font-family: var(--font-maven);
    font-size: var(--fs-16);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: center;
}

.btn-submit:hover {
    background-color: #d14d22;
}