*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Inter',sans-serif;
}

body{
min-height:100vh;
background:linear-gradient(180deg,#071B3A 0%,#0D6EFD 100%);
display:flex;
align-items:center;
justify-content:center;
padding:20px;
}

.login-wrapper{
width:100%;
max-width:520px;
}

.login-card{
background:#ffffff;
border-radius:28px;
padding:40px 28px;
box-shadow:0 20px 60px rgba(0,0,0,.15);
}

.logo{
font-size:34px;
font-weight:800;
color:#071B3A;
text-align:center;
letter-spacing:1px;
margin-bottom:8px;
}

.tagline{
text-align: center;
color:#6B7280;
font-size:16px;
font-weight:500;
margin-bottom:30px;
}

.mobile-input{
width:100%;
height:58px;
border:2px solid #E5E7EB;
border-radius:16px;
padding:0 18px;
font-size:16px;
outline:none;
transition:.3s;
margin-bottom:18px;
}

.mobile-input:focus{
border-color:#0D6EFD;
}

.btn-primary{
width:100%;
height:58px;
border:none;
border-radius:16px;
background:#0D6EFD;
color:#fff;
font-size:16px;
font-weight:700;
cursor:pointer;
transition:.3s;

}

.btn-primary:hover{
transform:translateY(-1px);
}




.admin-btn{
    display:flex;
    align-items:center;
    justify-content:center;

    width:100%;
    height:58px;

    margin-bottom:12px;

    background:#0D6EFD;
    color:#fff;

    text-decoration:none;

    border-radius:16px;

    font-size:16px;
    font-weight:700;
    
}

.admin-btn:hover{
    opacity:.95;
}


.wallet-history-btn{
display:inline-flex;
align-items:center;
gap:6px;

margin-top:10px;

padding:10px 16px;

background:#EFF6FF;
color:#0D6EFD;

text-decoration:none;

border-radius:12px;

font-size:14px;
font-weight:600;

transition:.3s;
}

.wallet-history-btn:hover{
background:#DBEAFE;
}


@media(max-width:480px){

.login-card{
padding:32px 22px;
border-radius:24px;
}

.logo{
font-size:30px;
}

}





.history-order{
font-size:15px;
line-height:1.8;
}





.product-box{

margin:25px 0;

padding:18px;

background:#f8fbff;

border-radius:14px;

border:1px solid #e7eef9;

}

.product-box h3{

margin:0 0 15px;

font-size:22px;

color:#0B2C6B;

}

.product-row{

display:flex;

justify-content:space-between;

padding:10px 0;

border-bottom:1px solid #ececec;

font-size:18px;

}

.product-row:last-child{

border-bottom:none;

}















.section-title{
    font-size:20px;
    font-weight:700;
    margin:22px 0 12px;
    color:#0B2C6B;
}

.card{
    background:#fff;
    border-radius:16px;
    padding:18px;
    margin-bottom:15px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:8px 0;
    border-bottom:1px solid #eee;
}

.row:last-child{
    border-bottom:none;
}

.green{
    color:#16A34A;
    font-weight:700;
}

.red{
    color:#DC2626;
    font-weight:700;
}

.blue{
    color:#2563EB;
    font-weight:700;
}

.order-number{
    font-size:18px;
    font-weight:700;
    color:#0B2C6B;
}

.badge{
    display:inline-block;
    padding:4px 10px;
    border-radius:20px;
    font-size:13px;
    font-weight:700;
}

.badge-success{
    background:#DCFCE7;
    color:#166534;
}

.badge-cash{
    background:#FEF3C7;
    color:#92400E;
}

.badge-wallet{
    background:#DBEAFE;
    color:#1D4ED8;
}

.info-box{
    background:#fff;
    border-radius:18px;
    padding:24px;
    margin-bottom:22px;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
}

.row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 0;
    border-bottom:1px solid #ECECEC;
    gap:20px;
}

.row:last-child{
    border-bottom:none;
}

@media(max-width:768px){

.row{

flex-direction:column;

align-items:flex-start;

gap:6px;

}

.row span{
    color:#6B7280;
    font-size:15px;
}

.row strong{
    width: 100%;
    color:#111827;
    font-size:16px;
    text-align:left;
    margin-top: 2px;
}

.green{
    color:#16A34A !important;
}

.red{
    color:#DC2626 !important;
}

