/* PAGE */

.page-wrapper{
padding:60px 20px;
display:flex;
justify-content:center;
background:#f4f7fb;
}

/* CARD */

.form-container{
width:100%;
max-width:800px;
background:white;
padding:40px;
border-radius:16px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */

.form-header{
text-align:center;
margin-bottom:30px;
}

.form-header h2{
color:#003366;
margin-bottom:10px;
}

.form-header p{
color:#666;
}

/* SUCCESS */

.success-box{
background:#e6f7ed;
color:#0c6b2f;
padding:15px;
border-radius:10px;
margin-bottom:20px;
}

/* FORM */

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
}

.form-group{
margin-bottom:20px;
margin-right: 10px;
}

.form-group label{
font-weight:600;
display:block;
margin-bottom:6px;
}

.form-group input,
.form-group select,
.form-group textarea{
width:100%;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
font-size:14px;
}

.form-group textarea{
height:120px;
resize:none;
}

/* BUTTON */

.submit-btn{
width:100%;
padding:14px;
background:#003366;
color:white;
border:none;
border-radius:10px;
font-weight:600;
cursor:pointer;
transition:0.2s;
}

.submit-btn:hover{
background:#0056b3;
}

.help-box{
background:#f8fbff;
padding:20px;
border-radius:10px;
margin-top:30px;
font-size:14px;
color:#444;
}

/* ================= FOOTER ================= */

.footer{
background:#003366;
color:white;
padding:60px 20px 20px 20px;
}

.footer-container{
max-width:1100px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:40px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:15px;
}

.footer-col p{
font-size:14px;
line-height:1.6;
color:#ddd;
}

.footer-col i{
margin-right:8px;
}

.social-link{
display:inline-block;
color:white;
text-decoration:none;
margin-top:5px;
}

.social-link:hover{
color:red;
}

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid rgba(255,255,255,0.1);
padding-top:15px;
font-size:13px;
color:#ccc;
}
