/* Registration Section Styles */

.registration-section {
    background-color: #09293b;
    padding: 100px 40px;
    position: relative;
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.registration-section-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.registration-content {
    text-align: center;
}

.registration-closed-message {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
    color: #09293b;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 1.4;
}

.registration-form-wrapper {
    font-family: "Open Sans", sans-serif;
}

.registration-form-wrapper h1 {
    font-family: "Open Sans", sans-serif;
}

.registration-form-wrapper h2,
.registration-form-wrapper h3,
.registration-form-wrapper h4,
.registration-form-wrapper h5,
.registration-form-wrapper h6 {
    font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}

.registration-form-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.registration-form-wrapper .gform_wrapper {
    margin: 0;
}

.registration-form-wrapper .gform_wrapper form {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-section {
        padding: 60px 20px;
    }
    
    .registration-closed-message {
        font-size: 1.75rem;
    }
    
    .registration-form-wrapper {
        padding: 40px 20px;
    }
}

