/* =========================================
   PREMIUM ADMISSION FORM STYLES
========================================= */

.pragya-form-section {
    background: linear-gradient(135deg, #f2f9f6 0%, #e0f2ec 100%);
    min-height: 100vh;
}

.pragya-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(15, 107, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 107, 89, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* Glass Card */
.pragya-glass-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(11, 108, 89, 0.08);
    animation: pragyaFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Header & Badges */
.icon-circle {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #0f6b59 0%, #4db092 100%);
    color: white;
    font-size: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.text-gradient {
    background: linear-gradient(90deg, #0f6b59, #4db092);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.pragya-badge-light {
    background: #e0f2ec;
    color: #2c3e3a;
    font-weight: 600;
    padding: 8px 15px;
    border: 1px solid #bce3d6;
    border-radius: 20px;
}
.text-teal {
    color: #0f6b59 !important;
}
.pragya-divider {
    border-color: #0f6b59;
    opacity: 0.1;
}

/* Section Headers */
.form-section-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #1a2b28;
}
.step-num {
    background: #e0f2ec;
    color: #0f6b59;
    font-size: 13px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 8px;
    margin-right: 12px;
}

/* Floating Inputs */
.custom-input {
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    height: 58px !important;
    padding-left: 3.2rem !important;
    font-size: 0.95rem;
    background-color: #fbfdfc;
    transition: all 0.3s ease;
    box-shadow: none !important;
}
.custom-label {
    padding-left: 3.2rem !important;
    color: #8da49f;
}
.custom-input:focus {
    border-color: #0f6b59;
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 107, 89, 0.1) !important;
}
.input-icon {
    position: absolute;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: #a0b5b0;
    z-index: 5;
    transition: color 0.3s ease;
    pointer-events: none;
}
.custom-input:focus ~ .input-icon,
.custom-input:not(:placeholder-shown) ~ .input-icon {
    color: #0f6b59;
}

/* Radio Cards (Gender) */
.custom-radio-wrap {
    flex: 1;
    min-width: 100px;
}
.radio-card {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    background: #fbfdfc;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}
input[type="radio"]:checked + .radio-card {
    border-color: #0f6b59;
    background: #e0f2ec;
    color: #0f6b59;
    font-weight: 600;
}

/* Toggle Switch */
.pragya-custom-switch {
    background: #fbfdfc;
    border-color: #e2e8f0 !important;
    height: 58px;
    position: relative;
}
.pragya-custom-switch .form-check-input {
    width: 2.5em;
    height: 1.2em;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}
.pragya-custom-switch .form-check-input:checked {
    background-color: #0f6b59;
    border-color: #0f6b59;
}

/* Photo Upload Box */
.photo-upload-container {
    height: 100%;
    min-height: 140px;
    border: 2px dashed #0f6b59;
    border-radius: 12px;
    background-color: #f8fbf9;
    transition: all 0.3s ease;
    overflow: hidden;
}
.photo-upload-container:hover {
    background-color: #e0f2ec;
}
.object-fit-cover {
    object-fit: cover;
}

/* Rules Card */
.pragya-rules-container {
    background: #f8fbf9;
    border: 1px solid #e2e8f0;
}
.rules-scroll-box {
    max-height: 160px;
    overflow-y: auto;
}
/* Custom Scrollbar for Rules */
.rules-scroll-box::-webkit-scrollbar {
    width: 6px;
}
.rules-scroll-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.rules-scroll-box::-webkit-scrollbar-thumb {
    background: #4db092;
    border-radius: 10px;
}
.rules-scroll-box::-webkit-scrollbar-thumb:hover {
    background: #0f6b59;
}
.rules-scroll-box ol li {
    padding-left: 5px;
    line-height: 1.6;
}

/* Declaration Checkbox Area (Warning Tone) */
.pragya-declaration-box {
    background: #fff5f5;
    border: 1px solid #ffe3e3;
    transition: all 0.3s;
}
.pragya-declaration-box.checked {
    background: #e0f2ec;
    border-color: #bce3d6;
} /* Turns green when checked */

.custom-checkbox-wrapper input[type="checkbox"] {
    display: none;
}
.custom-checkbox {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: white;
    border: 2px solid #ff9999;
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}
.custom-checkbox-wrapper input[type="checkbox"]:checked + .custom-checkbox {
    background: #0f6b59;
    border-color: #0f6b59;
}
.custom-checkbox-wrapper
    input[type="checkbox"]:checked
    + .custom-checkbox::after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: white;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Button */
.btn-premium {
    background: linear-gradient(135deg, #0f6b59 0%, #228b72 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(15, 107, 89, 0.2);
}
.btn-premium:hover:not(:disabled) {
    background: linear-gradient(135deg, #0c5647 0%, #1e7a63 100%);
    color: #ffffff;
    transform: scale(1.03) translateY(-2px);
    box-shadow: 0 12px 25px rgba(15, 107, 89, 0.35);
}
.btn-premium:disabled {
    background: #a0b5b0;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

.pragya-rules-list li{
    list-style-type: disc !important;
}

@keyframes pragyaFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
