body{
    margin:0;
    padding:0;
    font-family:'Segoe UI', sans-serif;
    background:#edf3fb;
}

/* Center Layout */
.auth-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

/* Box */
.auth-box{
    width:100%;
    max-width:550px;
    background:#ffffff;
    padding:35px 28px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}

/* Background Image */
/*.auth-box::before{
    content:'';
    position:absolute;
    right:-20px;
    bottom:110px;
    width:250px;
    height:250px;
    background:url('../images/bg-truck.png') no-repeat center;
    background-size:contain;
    opacity:0.9;
    z-index:0;
}*/
.auth-box::before {
    content: '';
    position: absolute;
    right: -55px;
    width: 70%;
    height: 80vh;
    background: url('../images/bg-truck.png') no-repeat center;
    background-size: contain;
    opacity: 0.7;
    z-index: 3;
    /* max-width: 200px; */
}
.loginpage{
    width:100%;
    max-width:450px;
    background:#ffffff;
    padding:35px 28px;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    position:relative;
    overflow:hidden;
}
.loginpage::before {
	content: '';
	position: absolute;
	top: -50px;
	right: -20%;
	width: 80%;
	height: 40vh;
	background: url('../images/bg-truck.png') no-repeat center;
	background-size: contain;
	opacity: 0.9;
	z-index: 7;
	/* max-width: 200px; */
}
/* Content Above */
.auth-box *{
    position:relative;
    z-index:2;
}

/* Logo */
.logo{
    font-size:52px;
    font-weight:800;
    color:#0b2c66;
    margin-bottom:15px;
}

/* Heading */
.title{
    font-size:28px;
    font-weight:700;
    color:#182a52;
    margin-bottom:25px;
}

/* Labels */
label{
    font-weight:600;
    color:#394b66;
    margin-bottom:7px;
    display:block;
}

/* Inputs */
.input-group-text{
    background:#fff;
    border-right:none;
    color:#8a94a6;
}

.form-control,
.form-select{
    border-left:none;
    padding:12px;
    height:48px;
}

.form-control:focus,
.form-select:focus{
    box-shadow:none;
    border-color:#ced4da;
}

/* Forgot Password */
.forgot-link{
    font-size:14px;
    text-decoration:none;
    color:#4a90ff;
    font-weight:600;
}

/* Button */
.auth-btn{
    background:linear-gradient(90deg,#0d6efd,#1f80ff);
    border:none;
    color:#fff;
    padding:12px;
    font-size:22px;
    font-weight:600;
    border-radius:8px;
    transition:0.3s;
}

.auth-btn:hover{
    opacity:0.95;
}

/* Bottom Text */
.bottom-link{
    margin-top:20px;
    text-align:center;
    color:#7f8aa3;
    font-size:15px;
}

.bottom-link a{
    color:#0d6efd;
    text-decoration:none;
    font-weight:700;
}

/* Mobile Responsive */
@media(max-width:576px){

.auth-box{
    padding:25px 20px;
    border-radius:14px;
}

.logo{
    font-size:42px;
}

.title{
    font-size:28px;
}

.auth-btn{
    font-size:20px;
}

.auth-box::before{
    width:180px;
    height:180px;
    bottom:130px;
}

}
/* DASHBOARD */

.dashboard-wrapper{
    display:flex;
    min-height:100vh;
    background:#edf3fb;
}

/* Sidebar */

.sidebar{
    width:260px;
    background:#0b2c66;
    color:#fff;
    padding:25px 0;
}

.sidebar-logo{
    font-size:42px;
    font-weight:800;
    padding:0 25px 25px;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

.sidebar-menu{
    list-style:none;
    padding:20px 0 0;
    margin:0;
}

.sidebar-menu li{
    margin-bottom:8px;
}

.sidebar-menu li a{
    color:#d9e7ff;
    text-decoration:none;
    padding:14px 25px;
    display:block;
    font-size:16px;
    transition:0.3s;
}

.sidebar-menu li a i{
    margin-right:10px;
}

.sidebar-menu li.active a,
.sidebar-menu li a:hover{
    background:#0d6efd;
    color:#fff;
}

/* Main */

.dashboard-content{
    flex:1;
    padding:30px;
}

.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:30px;
}

.dashboard-header h3{
    font-weight:700;
    color:#0b2c66;
}

.dashboard-header span{
    color:#6c757d;
}

/* Cards */

.dash-card{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
    text-align:center;
    height:100%;
}

.dash-card i{
    font-size:40px;
    color:#0d6efd;
    margin-bottom:15px;
}

.dash-card h5{
    font-weight:700;
}

/* Table */

.table-box{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.table thead{
    background:#f4f7fc;
}

/* Responsive */

@media(max-width:991px){

.sidebar{
    width:220px;
}

}

@media(max-width:768px){

.dashboard-wrapper{
    flex-direction:column;
}

.sidebar{
    width:100%;
}

.dashboard-content{
    padding:20px;
}

.dashboard-header{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
}

}
/* PROFILE UPDATE FORM */

.form-heading{
    font-size:20px;
    font-weight:700;
    color:#0b2c66;
    padding-bottom:10px;
    border-bottom:2px solid #eef2f7;
    margin-bottom:20px;
}

.table-box label{
    font-weight:600;
    color:#394b66;
    margin-bottom:6px;
    display:block;
}

.table-box .form-control,
.table-box .form-select{
    height:48px;
    border-radius:8px;
}

.table-box textarea.form-control{
    height:auto;
}

.table-box input[type="file"]{
    padding:10px;
}

.auth-btn{
    min-width:220px;
}
/* DRIVER TRIPS PAGE */

.trip-card{
    background:#ffffff;
    border-radius:18px;
    padding:28px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
    height:100%;
    transition:0.3s;
}

.trip-card:hover{
    transform:translateY(-4px);
}

.trip-card i{
    font-size:38px;
    color:#0d6efd;
    margin-bottom:12px;
}

.trip-card h4{
    font-size:28px;
    font-weight:700;
    color:#0b2c66;
    margin-bottom:6px;
}

.trip-card p{
    margin:0;
    color:#6c757d;
    font-size:15px;
}

/* Print PDF */
@media print{

.sidebar,
.dashboard-header button{
    display:none !important;
}

.dashboard-content{
    padding:0;
}

body{
    background:#fff;
}

}