/* ===================================
   RADHA GOVIND UNIVERSITY
   Registration Form Styles
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    background:#f4f7fb;

    font-family:Arial, Helvetica, sans-serif;

    color:#333;

}

.container{

    max-width:1200px;

}

.card{

    border:none;

    border-radius:12px;

    overflow:hidden;

}

.card-header{

    padding:25px;

    background:#0d6efd;

}

.card-header h2{

    font-weight:bold;

    letter-spacing:1px;

}

.card-header h5{

    margin-top:10px;

    font-weight:normal;

}

.card-body{

    padding:35px;

}

h4{

    color:#0d6efd;

    margin-bottom:20px;

    font-weight:bold;

}

label{

    font-weight:600;

}

.form-control,
.form-select{

    height:45px;

    border-radius:8px;

}

textarea.form-control{

    height:120px;

}

.form-control:focus,
.form-select:focus{

    border-color:#0d6efd;

    box-shadow:0 0 8px rgba(13,110,253,.25);

}

.table{

    margin-top:20px;

}

.table thead{

    background:#0d6efd;

    color:#fff;

}

.table th{

    text-align:center;

    vertical-align:middle;

}

.table td{

    vertical-align:middle;

}

.table input{

    min-width:120px;

}

.img-thumbnail{

    border-radius:8px;

    border:2px solid #ddd;

}

.alert{

    border-radius:10px;

}

.btn{

    border-radius:8px;

    padding:12px 30px;

    font-weight:bold;

}

.btn-success{

    background:#198754;

}

.btn-success:hover{

    background:#157347;

}

.btn-secondary:hover{

    background:#555;

}

.form-check{

    margin-top:25px;

}

.form-check-label{

    line-height:28px;

}

hr{

    margin:35px 0;

}

.required{

    color:red;

}

.footer{

    text-align:center;

    margin-top:40px;

    color:#777;

    font-size:14px;

}

/* Upload preview */

#photoPreview,
#signaturePreview{

    width:150px;

    height:180px;

    object-fit:cover;

    display:block;

}

#signaturePreview{

    height:90px;

}

/* Responsive */

@media(max-width:992px){

.card-body{

padding:20px;

}

.table{

font-size:14px;

}

}

@media(max-width:768px){

.card-header h2{

font-size:24px;

}

.card-header h5{

font-size:18px;

}

.table{

display:block;

overflow-x:auto;

white-space:nowrap;

}

.btn{

width:100%;

margin-bottom:15px;

}

}

@media(max-width:576px){

.card-body{

padding:15px;

}

h4{

font-size:20px;

}

label{

font-size:14px;

}

}
