/* =========================
BASE STYLES
========================= */

html,body{
height:100%;
margin:0;
font-family:'Segoe UI', Arial, sans-serif;
background:linear-gradient(135deg,#eef2f7,#e2e8f0);
}


/* =========================
LOGIN PAGE LAYOUT
========================= */

.login-page{
height:100vh;
display:flex;
align-items:center;
justify-content:center;
}

/* LOGIN CARD */

.portal-card{
background:white;
width:380px;
padding:40px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
text-align:center;
}

/* LOGO */

.logo{
width:60px;
margin-bottom:10px;
}

/* TITLE */

.portal-title{
font-size:20px;
font-weight:600;
margin-bottom:4px;
}

.portal-sub{
font-size:13px;
color:#666;
margin-bottom:20px;
}

/* INPUTS */

.portal-card input{
width:100%;
padding:10px;
margin-bottom:12px;
border:1px solid #d1d5db;
border-radius:6px;
font-size:14px;
box-sizing:border-box;
}

/* PASSWORD FIELD */

.password-field{
position:relative;
}

.password-field input{
padding-right:40px;
}

.toggle-password{
position:absolute;
right:10px;
top:50%;
transform:translateY(-50%);
cursor:pointer;
font-size:16px;
color:#666;
}

/* BUTTON */

.portal-card button{
width:100%;
padding:10px;
border:none;
background:#c9a227;
color:white;
border-radius:6px;
font-size:15px;
cursor:pointer;
}

.portal-card button:hover{
background:#b3921e;
}

/* LINKS */

.portal-links{
margin-top:12px;
font-size:13px;
}

.portal-links a{
display:block;
color:#2563eb;
text-decoration:none;
margin-top:4px;
}

/* ERROR */

.error{
background:#fee2e2;
color:#b91c1c;
padding:8px;
border-radius:6px;
margin-bottom:12px;
font-size:13px;
}

/* FOOTER */

.footer{
margin-top:20px;
font-size:12px;
color:#888;
}


/* =========================
ADMIN NAVBAR
========================= */

.adminNavbar{
width:100%;
background:#1f2937;
padding:10px 20px;
display:flex;
align-items:center;
box-sizing:border-box;
}

/* BRAND */

.adminBrand{
display:flex;
align-items:center;
gap:8px;
margin-right:20px;
color:white;
font-weight:600;
}

.adminLogo{
height:26px;
width:auto;
}

/* MENU */

.adminMenu{
display:flex;
align-items:center;
gap:18px;
flex:1;
}

/* LINKS */

.adminMenu a{
color:#d1d5db;
text-decoration:none;
font-size:13px;
padding:6px 10px;
border-radius:5px;
}

.adminMenu a:hover{
background:#374151;
color:white;
}

/* LOGOUT BUTTON */

.logoutBtn{
margin-left:auto;
background:#c9a227;
color:white !important;
padding:6px 12px;
border-radius:5px;
}

.logoutBtn:hover{
background:#b3921e;
}