/* --- ENROLLMENT APPLICATION STYLING (WHITE & PEACH THEME) --- */

.enroll-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5EE 100%);
    color: #333333;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enroll-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 218, 185, 0.5);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 140, 0, 0.08);
}

/* Sidebar Info Section */
.info-sidebar {
    background: linear-gradient(145deg, #FFFDFB 0%, #FFEBD9 100%);
    padding: 50px;
    display: flex;
    align-items: center;
    border-right: 1px solid rgba(255, 218, 185, 0.4);
}

.academy-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #FF8C00;
    color: #FFFFFF;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.info-sidebar h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 25px 0;
    color: #2D2D2D;
    letter-spacing: -1px;
}

.info-sidebar h1 span {
    color: #FF8C00;
}

.enlightenment-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 20px;
}

.waitlist-note {
    margin-top: 40px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-left: 4px solid #25D366; /* WhatsApp Green Accent */
    border-radius: 0 12px 12px 0;
    display: flex;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.whatsapp-icon {
    font-size: 1.6rem;
    color: #25D366;
    margin-top: 3px;
}

.waitlist-note h4 {
    margin: 0 0 5px 0;
    color: #2D2D2D;
    font-weight: 700;
}

.waitlist-note p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
}

/* Right Content: The Form Body */
.form-content {
    padding: 50px;
    background: #FFFFFF;
}

.academy-form h2 {
    font-size: 2rem;
    font-weight: 800;
    margin: 0 0 5px 0;
    color: #2D2D2D;
}

.academy-form h2 span {
    color: #FF8C00;
}

.form-subtitle {
    color: #777777;
    margin: 0 0 35px 0;
    font-size: 1rem;
}

.input-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #444444;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 16px;
    color: #FF8C00;
    font-size: 1rem;
    opacity: 0.7;
}

.input-wrapper input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border: 1px solid rgba(255, 218, 185, 0.8);
    background: #FFFDFB;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    transition: all 0.3s;
}

.input-wrapper input:focus, .input-group textarea:focus {
    outline: none;
    border-color: #FF8C00;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.1);
}

.input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255, 218, 185, 0.8);
    background: #FFFDFB;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    resize: none;
    box-sizing: border-box;
    transition: all 0.3s;
}

/* Custom Radio Layout */
.radio-container {
    display: flex;
    gap: 20px;
    margin-top: 4px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555555;
}

.radio-label input[type="radio"] {
    accent-color: #FF8C00;
    width: 16px;
    height: 16px;
}

/* Submit Action Button */
.enroll-submit-btn {
    width: 100%;
    padding: 16px;
    background: #FFDAB9;
    color: #FF8C00;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.enroll-submit-btn:hover {
    background: #FF8C00;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.15);
}

/* Desktop & Mobile Responsive Grid Shifting */
@media (max-width: 992px) {
    .enroll-container {
        grid-template-columns: 1fr;
        max-width: 650px;
    }
    .info-sidebar {
        border-right: none;
        border-bottom: 1px solid rgba(255, 218, 185, 0.4);
        padding: 40px;
    }
    .form-content {
        padding: 40px;
    }
}

@media (max-width: 480px) {
    .info-sidebar h1 { font-size: 2rem; }
    .info-sidebar, .form-content { padding: 25px; }
    .radio-container { flex-direction: column; gap: 12px; }
}
