*{
box-sizing:border-box;
font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
}

body{
background:#0b1220;
color:white;
}

.bg{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(135deg,#0ea5e9,#1e3a8a);
z-index:-2;
}

.bg-slider{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background-size:cover;
background-position:center;
background-repeat:no-repeat;
z-index:-2;
transition:background-image 1s ease-in-out;
}

.overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.35);
z-index:-1;
}

.topbar{
position:fixed;
top:0;
left:0;
width:100%;
background:#111827;
color:white;
padding:16px;
display:flex;
justify-content:center;
font-weight:700;
}

.container{
max-width:420px;
margin:auto;
padding:20px;
margin-top:120px;
}

.card{
background:white;
border-radius:16px;
padding:30px;
box-shadow:0 20px 40px rgba(0,0,0,.35);
display:flex;
flex-direction:column;
gap:12px;
}
h1{
text-align:center;
color:black;
margin-bottom:20px;
}
h2{
text-align:center;
color:white;
margin-bottom:20px;
}

.menu{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-top:10px;
}

.tile{
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
height:140px;
border-radius:16px;
border:none;
color:white;
font-weight:600;
font-size:16px;
cursor:pointer;
box-shadow:0 10px 20px rgba(0,0,0,.25);
overflow:hidden;
}

.tile:hover{
transform:scale(1.03);
}

.tile:active{
transform:scale(.97);
}

.ojek{
background:#16a34a;
}

.food{
background:#f97316;
}

.icon{
width:60px;
height:60px;
object-fit:contain;
margin-bottom:10px;
}

input{
width:100%;
height:48px;
padding:12px;
margin-bottom:12px;
border-radius:10px;
border:1px solid #ccc;
}

button{
width:100%;
height:48px;
border:none;
border-radius:10px;
background:#16a34a;
color:white;
font-size:16px;
cursor:pointer;
margin-top:12px;
}

button:hover{
background:#15803d;
}

.link{
text-align:center;
margin-top:10px;
}