*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
background:#eef2f7;
color:#222;
line-height:1.5;
}

/* =========================
   DESKTOP RECRUITMENT PORTAL
========================= */

.top-bar{
background:#002a5c;
color:#fff;
font-size:12px;
padding:6px 15px;
text-align:right;
}

header{
background:#fff;
border-bottom:3px solid #002a5c;
}

.header-container{
max-width:1200px;
margin:auto;
display:flex;
align-items:center;
justify-content:space-between;
padding:15px;
}

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
height:55px;
}

.logo-area h1{
font-size:20px;
color:#002a5c;
font-weight:700;
}

.portal-text{
font-size:14px;
color:#333;
}

.notice-bar{
background:#f8f9fa;
border-left:4px solid #002a5c;
padding:10px 15px;
margin:20px auto;
width:95%;
max-width:1100px;
font-size:13px;
border-radius:4px;
}

.form-wrapper{
background:#fff;
width:95%;
max-width:1100px;
margin:20px auto;
padding:25px;
border-radius:8px;
box-shadow:0 4px 15px rgba(0,0,0,0.08);
}

.section-title{
font-size:17px;
font-weight:600;
color:#002a5c;
margin-bottom:15px;
border-bottom:1px solid #eee;
padding-bottom:8px;
}

.form-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:15px;
}

input, select{
padding:11px;
border:1px solid #ccc;
border-radius:5px;
font-size:14px;
width:100%;
}

input:focus, select:focus{
outline:none;
border-color:#002a5c;
box-shadow:0 0 4px rgba(0,42,92,0.2);
}

.full-width{
grid-column:1 / -1;
}

.checkbox-area{
display:flex;
align-items:flex-start;
gap:8px;
font-size:13px;
}

button{
background:#002a5c;
color:#fff;
padding:13px;
border:none;
border-radius:5px;
font-size:15px;
cursor:pointer;
width:220px;
transition:0.3s;
}

button:hover{
background:#004aad;
}

footer{
background:#002a5c;
color:#fff;
text-align:center;
padding:18px 10px;
margin-top:40px;
font-size:12px;
}

/* =========================
   PREMIUM MOBILE APP STYLE
========================= */

.app-container{
background:linear-gradient(180deg,#002a5c 0%, #003d8f 40%, #f2f4f8 40%);
min-height:100vh;
padding:20px 15px 120px 15px;
}

/* HEADER CARD */
.app-header{
text-align:center;
color:#fff;
margin-bottom:25px;
}

.app-header img{
height:90px;
margin-bottom:10px;
}

.app-header h3{
font-size:20px;
font-weight:600;
}

.app-header p{
font-size:13px;
opacity:0.9;
}

/* FORM CARD */
.app-card{
background:#fff;
padding:20px;
border-radius:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
margin-bottom:20px;
}

.app-card h4{
font-size:15px;
color:#002a5c;
margin-bottom:15px;
font-weight:600;
border-left:4px solid #002a5c;
padding-left:8px;
}

/* INPUT STYLE */
.app-card input,
.app-card select{
width:100%;
padding:14px 16px;
margin-bottom:14px;
border:1px solid #e0e0e0;
border-radius:14px;
font-size:14px;
background:#f9fafc;
transition:0.3s;
}

.app-card input:focus,
.app-card select:focus{
outline:none;
border-color:#002a5c;
background:#fff;
box-shadow:0 0 0 3px rgba(0,42,92,0.1);
}

/* FILE UPLOAD STYLE */
.upload-btn{
display:block;
background:#f3f6fb;
padding:16px;
border-radius:14px;
text-align:center;
font-size:14px;
font-weight:500;
border:2px dashed #ccd6e6;
cursor:pointer;
transition:0.3s;
}

.upload-btn:hover{
background:#eaf1fb;
}

.upload-btn input{
display:none;
}

/* FIXED SUBMIT BUTTON */
.app-bottom{
position:fixed;
bottom:0;
left:0;
right:0;
background:#ffffff;
padding:15px;
box-shadow:0 -8px 20px rgba(0,0,0,0.08);
}

.app-bottom button{
width:100%;
padding:16px;
background:linear-gradient(90deg,#002a5c,#004aad);
border:none;
border-radius:18px;
color:#fff;
font-size:16px;
font-weight:600;
letter-spacing:0.5px;
}

.field-label{
display:block;
font-size:13px;
font-weight:600;
margin-bottom:6px;
color:#002a5c;
}

/* Make date & select identical */
.uniform-field{
width:100%;
padding:14px 16px;
margin-bottom:14px;
border:1px solid #e0e0e0;
border-radius:14px;
font-size:14px;
background:#f9fafc;
color:#333;
appearance:none;
-webkit-appearance:none;
-moz-appearance:none;
transition:0.3s;
}

.uniform-field:focus{
outline:none;
border-color:#002a5c;
box-shadow:0 0 0 3px rgba(0,42,92,0.1);
background:#fff;
}

/* Fix Android calendar icon alignment */
input[type="date"]::-webkit-calendar-picker-indicator{
opacity:0.7;
cursor:pointer;
}


/* ===== FORCE CLEAN MOBILE LAYOUT ===== */

@media (max-width: 768px) {

.app-container{
padding:20px 15px 120px 15px !important;
background:#f2f4f8 !important;
}

.app-card{
display:block !important;
width:100% !important;
padding:20px !important;
border-radius:18px !important;
box-shadow:0 6px 20px rgba(0,0,0,0.08) !important;
margin-bottom:20px !important;
background:#fff !important;
}

.app-card input,
.app-card select{
display:block !important;
width:100% !important;
margin-bottom:14px !important;
padding:14px 16px !important;
border-radius:14px !important;
border:1px solid #e0e0e0 !important;
background:#f9fafc !important;
font-size:14px !important;
}

.app-card h4{
margin-bottom:15px !important;
font-size:16px !important;
color:#002a5c !important;
}

.upload-btn{
display:block !important;
width:100% !important;
margin-top:10px !important;
}

.app-bottom{
position:fixed !important;
bottom:0 !important;
left:0 !important;
right:0 !important;
background:#fff !important;
padding:15px !important;
box-shadow:0 -5px 15px rgba(0,0,0,0.08) !important;
}

.app-bottom button{
width:100% !important;
padding:16px !important;
border-radius:16px !important;
background:linear-gradient(90deg,#002a5c,#004aad) !important;
color:#fff !important;
font-size:16px !important;
font-weight:600 !important;
border:none !important;
}

}