/* ===== RED THEME HERO FORM ===== */
.hero-content-center.red-theme {
    background-color: #d71f27;
    /* Red Background */
    border: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    color: white;
    padding: 30px;
    max-width: 450px;
}

.hero-content-center.red-theme h2 {
    color: white;
    text-align: center;
    font-size: 24px;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 700;
}

.hero-content-center.red-theme h2::after {
    display: none;
    /* Remove the underline */
}

.hero-content-center.red-theme .form-group label {
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: none;
    margin-bottom: 5px;
}

.hero-content-center.red-theme input,
.hero-content-center.red-theme select {
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 12px;
    font-size: 14px;
    color: #333;
    background: white;
    box-shadow: none;
}

.hero-content-center.red-theme input:focus,
.hero-content-center.red-theme select:focus {
    border-color: #fff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Checkbox specific styling for red theme */
.hero-content-center.red-theme input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #1a1f71;
    /* Dark blue check */
    border: 2px solid white;
    background: white;
    cursor: pointer;
    outline: none;
}

/* Force visual update on check */
.hero-content-center.red-theme input[type="checkbox"]:checked {
    background-color: #1a1f71;
    border-color: #1a1f71;
    position: relative;
}

.hero-content-center.red-theme input[type="checkbox"]:checked::after {
    content: '✔';
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}

.hero-content-center.red-theme .form-group[style*="flex-direction: row"] label {
    font-weight: 500;
    font-size: 14px;
}

/* Button styling */
.hero-content-center.red-theme .btn-submit {
    background: #2c3e50;
    /* Dark blue/grey button */
    color: white;
    font-weight: 700;
    text-transform: none;
    font-size: 16px;
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.hero-content-center.red-theme .btn-submit:hover {
    background: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Date/Time Row Adjustment */
.hero-content-center.red-theme .form-row {
    gap: 10px;
}

.hero-content-center.red-theme .form-row .form-group:first-child {
    flex: 2;
    /* Date takes more space */
}

.hero-content-center.red-theme .form-row .form-group:last-child {
    flex: 1;
    /* Time takes less space */
}