/* =========================
   GLOBAL
========================= */

body{

    background: #f4f6f9;

    font-family: 'Segoe UI', Arial, sans-serif;

    margin: 0;

    padding: 0;

    color: #222;
}


/* =========================
   HEADER
========================= */
.header{

    background: linear-gradient(135deg,#0d4a8d,#114f96);

    border-bottom: 4px solid #ffc107;

    padding: 18px 0;

    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

/* =========================
   LOGOS
========================= */

.logo{

    width: 90px;

    border-radius: 8px;

    background: white;

    padding: 4px;
}

.naac-logo{

    width: 95px;
}


/* =========================
   UNIVERSITY TITLE
========================= */

.university-title{

    color: #ffffff;

    font-size: 32px;

    font-weight: 700;

    margin-bottom: 4px;

    letter-spacing: 0.5px;
}


/* =========================
   CAMPUS NAME
========================= */

.campus-name{

    color: #ffffff;

    font-size: 20px;

    font-weight: 600;

    margin-bottom: 5px;
}


/* =========================
   ADDRESS
========================= */

.address{

    color: #f1f1f1;

    font-size: 16px;

    margin-bottom: 3px;
}


/* =========================
   CONTACT INFO
========================= */

.contact-info{

    color: #ffffff;

    font-size: 16px;

    margin-bottom: 0;
}

.contact-info a{

    color: #ffc107;

    text-decoration: none;

    font-weight: 600;
}

.contact-info a:hover{

    text-decoration: underline;
}


/* =========================
   FORM CONTAINER
========================= */

.form-container{

    background: #ffffff;

    max-width: 1400px;

    margin: 35px auto 50px auto;

    border-radius: 22px;

    padding: 45px;

    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}


/* =========================
   FORM HEADER
========================= */

.form-header{

    text-align: center;

    margin-bottom: 40px;
}


/* =========================
   MAIN TITLE
========================= */

.main-title{

    color: #0d6efd;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 12px;

    line-height: 1.2;

    text-align: center;
}


/* =========================
   SUBTITLE
========================= */

.form-subtitle{

    text-align: center;

    font-size: 18px;

    color: #666;

    margin-top: -5px;

    margin-bottom: 35px;
}


/* =========================
   SESSION BADGE
========================= */

.session-badge{

    display: inline-block;

    background: #0d6efd;

    color: white;

    padding: 8px 22px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 600;
}


/* =========================
   SECTION TITLES
========================= */

h5{

    color: #555;

    font-size: 26px;

    font-weight: 700;

    margin-top: 15px;

    margin-bottom: 28px;

    border-left: 5px solid #0d6efd;

    padding-left: 12px;
}


/* =========================
   LABELS
========================= */

label{

    font-weight: 600;

    font-size: 16px;

    margin-bottom: 8px;

    color: #222;
}


/* =========================
   INPUT FIELDS
========================= */

.form-control,
.form-select{

    height: 54px;

    border-radius: 12px;

    border: 1px solid #ced4da;

    font-size: 16px;

    padding-left: 15px;

    transition: 0.3s;
}


/* =========================
   INPUT FOCUS
========================= */

.form-control:focus,
.form-select:focus{

    border-color: #0d6efd;

    box-shadow: 0 0 10px rgba(13,110,253,0.20);
}


/* =========================
   TEXTAREA
========================= */

textarea.form-control{

    height: auto;

    min-height: 120px;

    padding-top: 12px;
}


/* =========================
   FILE INPUT
========================= */

input[type="file"]{

    padding-top: 11px;
}


/* =========================
   ALERTS
========================= */

.alert{

    border-radius: 14px;

    font-size: 16px;
}


/* =========================
   REGISTRATION DETAILS
========================= */

.registration-details{

    font-size: 16px;

    line-height: 1.9;
}


/* =========================
   SUCCESS PAGE
========================= */

.success-card{

    max-width: 1000px;

    margin: auto;
}


/* =========================
   BUTTONS
========================= */

.btn-primary{

    background: linear-gradient(135deg,#0d6efd,#0b57d0);

    border: none;

    padding: 14px 40px;

    border-radius: 12px;

    font-size: 18px;

    font-weight: 700;

    transition: 0.3s;
}

.btn-primary:hover{

    transform: translateY(-2px);

    background: linear-gradient(135deg,#0b57d0,#0848b3);
}

.btn-success{

    border-radius: 12px;

    font-weight: 600;
}


/* =========================
   TABLES
========================= */

.table{

    background: white;
}

.table th{

    font-weight: 600;
}


/* =========================
   FOOTER
========================= */

.footer{

    background: #0d4a8d;

    color: white;

    text-align: center;

    padding: 18px;

    margin-top: 50px;

    font-size: 15px;
}


/* =========================
   PRINT STYLE
========================= */

@media print {
    

    body{

        background: white !important;
    }

    .header,
    .footer,
    .btn{

        display: none !important;
    }

    .card{

        border: none !important;

        box-shadow: none !important;
    }

    .form-container{

        box-shadow: none !important;

        border: none !important;

        margin: 0 !important;

        padding: 0 !important;
    }

    .alert{

        border: 1px solid #ccc !important;
    }
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .header{

        text-align: center;
    }

    .logo{

        width: 75px;

        margin-bottom: 10px;
    }

    .naac-logo{

        width: 75px;

        margin-top: 10px;
    }

    .university-title{

        font-size: 24px;
    }

    .campus-name{

        font-size: 17px;
    }

    .address,
    .contact-info{

        font-size: 13px;
    }

    .form-container{

        padding: 22px;

        margin: 15px;
    }

    .main-title{

        font-size: 30px;
    }

    .form-subtitle{

        font-size: 15px;
    }

    h5{

        font-size: 22px;
    }

    .registration-details{

        font-size: 14px;
    }

}
/* =========================
   LOGIN BUTTON
========================= */

.btn-warning{

    border-radius: 12px;

    transition: 0.3s;

}

.btn-warning:hover{

    transform: scale(1.05);

}
/* =========================
   LOGIN CARD
========================= */

.login-card{

    border-radius: 22px;

    overflow: hidden;

}
/* =========================
   LOGIN PAGE
========================= */

.login-container{

    min-height: 70vh;
}

/* =========================
   LOGIN CARD HOVER
========================= */

.login-card{

    transition: 0.3s;
}

.login-card:hover{

    transform: translateY(-4px);

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
.photo-box{

width:110px;

height:140px;

border:2px dashed #000;

display:flex;

align-items:center;

justify-content:center;

text-align:center;

font-size:12px;

font-weight:bold;

margin:auto;

}