*{
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

body{
    margin:0;
    background:#f2f2f2;
}

/* HEADER */
.header{
    background:#0b2c83;
    color:#fff;
    padding:15px 30px;
    font-size:18px;
    font-weight:bold;
}

/* CENTER BOX */
.wrapper{
    min-height:calc(80vh - 50px);
    display:flex;
    justify-content:center;
    align-items:center;
}

.card{
    background:#fff;
    width:360px;
    padding:25px;
    border-radius:6px;
    box-shadow:0 0 15px rgba(0,0,0,0.15);
    text-align:center;
}

h2{
    margin-bottom:25px;
}

/* INPUTS */
input{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:4px;
    font-size:15px;
}

input:focus{
    outline:none;
    border-color:#0b2c83;
}

/* CAPTCHA */
.captcha-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
}

.captcha{
    background:#1a2b6d;
    color:#fff;
    padding:10px 18px;
    font-size:20px;
    letter-spacing:3px;
    border-radius:3px;
}

.refresh-btn{
    padding:8px 12px;
    background:#333;
    color:#fff;
    border:none;
    border-radius:3px;
    cursor:pointer;
}

/* BUTTONS */
.buttons{
    display:flex;
    gap:10px;
    justify-content:center;
}

.btn-primary{
    background:#0b2c83;
    color:#fff;
    padding:12px 25px;
    border:none;
    border-radius:4px;
    font-size:16px;
    cursor:pointer;
}

.btn-reset{
    background:#e5e5e5;
    padding:12px 25px;
    border:1px solid #999;
    border-radius:4px;
    cursor:pointer;
}
.table>thead >tr > th{
    background: #0b2c83;
    color:#fff;
    border: 1px solid #847676 !important;
}
.table>tbody >tr > td{
    border: 1px solid;
}
tbody, td, tr {
    border: 1px solid #847676  !important;
}
footer#footer {
    background-color: #63666e;
    color: #fff;
}
.boxApp {
    border-radius: 16px;
    border: 1px solid #CCD2FB;
    background: #FFF;
    box-shadow: 0px 20px 25px -1px rgba(0, 0, 0, 0.06);
}

.sgpa{
    text-align:right;
    color:#122880;
    font-size: 1rem;
    padding-right:4rem !important;
}


/* ERROR */
.error{
    color:red;
    font-size:14px;
    margin-bottom:10px;
}

.result-note{
    margin-top:40px;
    font-size:14px;
    color:#333;
    line-height:1.6;
}

.result-note p{
    margin-bottom:10px;
}

.result-note .coe{
    text-align:right;
    margin-top:30px;
    font-weight:bold;
   margin-right: 117px;
}


/* MOBILE */
@media(max-width:480px){
    .card{
        width:90%;
        padding:25px;
    }
}