/* =====================================
RESET
===================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}



/* =====================================
CONTAINER
===================================== */

.container{

max-width:950px;
margin:70px auto;
padding:45px;
background:white;
border-radius:8px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);

animation:fadeIn 0.5s ease;

}



/* =====================================
HEADINGS
===================================== */

h2{

text-align:center;
margin-bottom:20px;
color:#1c2d41;
font-size:26px;

}

h3{

text-align:center;
margin-bottom:20px;
color:#0b3b6e;
font-size:18px;

}



/* =====================================
SECTION BOX
===================================== */

.portal-box{

margin-top:35px;
padding:35px;
background:#f8fafc;
border-radius:8px;
border:1px solid #e3e6ea;

transition:all 0.3s ease;

}

.portal-box:hover{

box-shadow:0 8px 20px rgba(0,0,0,0.08);

}



/* =====================================
FORM GRID
===================================== */

.form-grid{

display:grid;
grid-template-columns:1fr 1fr;
gap:22px;

}

.full-width{

grid-column:1 / -1;

}



/* =====================================
LABELS
===================================== */

label{

display:block;
margin-top:12px;
font-weight:600;
font-size:14px;
color:#2c3e50;

}



/* =====================================
INPUT FIELDS
===================================== */

input{

width:100%;
padding:11px 12px;
margin-top:6px;

border:1px solid #d6d9de;
border-radius:5px;

font-size:14px;

transition:all 0.25s ease;

}



/* =====================================
SELECT DROPDOWN
===================================== */

select{

width:100%;
padding:11px 12px;
margin-top:6px;

border:1px solid #d6d9de;
border-radius:5px;

font-size:14px;

background:white;

cursor:pointer;

transition:all 0.25s ease;

}



/* =====================================
FOCUS EFFECT
===================================== */

input:focus,
select:focus{

border-color:#0b3b6e;
box-shadow:0 0 6px rgba(11,59,110,0.2);
outline:none;

}



/* =====================================
CHECKBOX
===================================== */

input[type="checkbox"]{

width:auto;
margin-right:10px;

}



/* =====================================
TABLE (DESTINATION TESTING)
===================================== */

.testing-table{

width:100%;
border-collapse:collapse;
margin-top:15px;

}

.testing-table th{

background:#0b3b6e;
color:white;
padding:10px;
font-size:14px;

}

.testing-table td{

border:1px solid #e3e6ea;
padding:8px;

}

.testing-table input{

width:100%;
border:none;
padding:8px;

}



/* =====================================
BUTTON
===================================== */

.btn{

display:inline-block;
margin-top:30px;

padding:14px 30px;

background:#0b3b6e;
color:white;

border:none;
border-radius:5px;

font-size:15px;
font-weight:600;

cursor:pointer;

transition:all 0.3s ease;

}



/* HOVER */

.btn:hover{

background:#15549b;

transform:translateY(-2px);

box-shadow:0 6px 15px rgba(0,0,0,0.2);

}



/* BUTTON CENTER */

button{

display:block;
margin:40px auto 0 auto;

}



/* =====================================
RESPONSIVE
===================================== */

@media (max-width:768px){

.form-grid{

grid-template-columns:1fr;

}

}



/* =====================================
ANIMATION
===================================== */

@keyframes fadeIn{

from{

opacity:0;
transform:translateY(10px);

}

to{

opacity:1;
transform:translateY(0);

}

}