.eoi-form-page .workshop-intro-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.eoi-form-page h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.eoi-form-page .subheading {
    font-size: 18px;
    color: var(--text-color);
}

/* Right Image Card */
.eoi-form-page .image-card {
    width: 39%;
    height: 290px;
    background: #eaeaea;
    /* border: 2px solid #cfcfcf; */
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eoi-form-page .image-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.eoi-form-page .image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    object-fit: cover;
}

.eoi-form-page .info-section {
    padding: 0 0 50px 0;
    text-align: center;
}
.eoi-form-page .info-container {
    padding: 40px 80px 60px;
}
.eoi-form-page .eoi-form-title {
    max-width: 960px;
    margin: 0 auto;
}
.eoi-form-page .eoi-form-title h3 {
    margin-bottom: 25px;
}
.eoi-form-page .workshop-aim {
    margin-bottom: 25px;
}

.eoi-form-page .eoi-form-event-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* gap: 20px; */
    margin: 20px 0 30px;
}
.eoi-form-page .event-type-label {
    flex: 1;
}
.eoi-form-page .event-type-select {
    width: calc(50% - 10px);
}

.eoi-form-page .event-type-select select {
    width: 100%;
}

.eoi-form-page .field-group input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #ff7a00;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px 0 0;
    cursor: pointer;
}

.eoi-form-page .field-group input[type="radio"]:checked {
    box-shadow: inset 0 0 0 5px #ff7a00;
}

.eoi-form-page .field-group label {
    margin-left: 20px;
}

.eoi-form-page .non-alumni-message {
    margin: 10px 0 20px;
    padding: 12px 14px;
    border: 1px solid #f3c3c3;
    background: #fff5f5;
    color: #b42318;
    border-radius: 4px;
}
