/* =========================================================
   Admission Enquiry Form Styles
   Great Career Higher Secondary School
   ========================================================= */

        * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        body { background: #f0f4f8; padding: 0px 0px; }
        .admissioncontainer { max-width: 650px; margin: 0 auto; background: #fff; padding: 35px 40px; border-radius: 12px; box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
        h2 { text-align: center; color: #1a365d; margin-bottom: 8px; }
        .subtitle { text-align: center; color: #718096; margin-bottom: 30px; font-size: 15px; }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 6px; font-weight: 600; color: #2d3748; }
        input, select, textarea {
            width: 100%; padding: 12px 14px; border: 1px solid #cbd5e0;
            border-radius: 8px; font-size: 15px; transition: 0.2s;
        }
        input:focus, select:focus, textarea:focus {
            outline: none; border-color: #3182ce; box-shadow: 0 0 0 3px rgba(49,130,206,0.15);
        }
        textarea { resize: vertical; min-height: 100px; }
       
        .alert-success { background: #c6f6d5; color: #22543d; }
        .alert-error { background: #fed7d7; color: #742a2a; }
        .required { color: #e53e3e; }
    