:root{

--bg:#0D1117;
--card:#161B22;

--accent:#D97706;
--accent-light:#F59E0B;

--text:#FFFFFF;
--secondary:#9CA3AF;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{

background:var(--bg);

color:var(--text);

font-family:Inter,Arial,sans-serif;

min-height:100vh;

padding:20px;

}

/* LOGIN */

.login-box{

max-width:420px;

margin:80px auto;

background:var(--card);

padding:35px;

border-radius:24px;

border:1px solid rgba(255,255,255,.05);

box-shadow:
0 0 40px rgba(0,0,0,.4);

}

.login-box h1{

font-size:42px;

text-align:center;

color:var(--accent-light);

margin-bottom:10px;

letter-spacing:4px;

}

.login-box p{

text-align:center;

color:var(--secondary);

margin-bottom:30px;

}

.login-box input{

width:100%;

height:52px;

margin-bottom:15px;

padding:0 15px;

background:#0B0F14;

border:1px solid rgba(255,255,255,.05);

border-radius:14px;

color:white;

font-size:15px;

outline:none;

}

.login-box button{

width:100%;

height:54px;

border:none;

border-radius:16px;

cursor:pointer;

font-weight:700;

font-size:15px;

color:white;

background:linear-gradient(
135deg,
var(--accent),
var(--accent-light)
);

}

/* ADMIN */

.admin-panel{

display:none;

max-width:1200px;

margin:auto;

}

.admin-panel.active{

display:block;

}

header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:25px;

}

header h1{

font-size:30px;

}

header button{

background:#B91C1C;

border:none;

height:45px;

padding:0 20px;

border-radius:12px;

color:white;

cursor:pointer;

}

.section{

background:var(--card);

padding:25px;

border-radius:22px;

margin-bottom:20px;

border:1px solid rgba(255,255,255,.05);

}

.section h2{

margin-bottom:20px;

font-size:22px;

color:var(--accent-light);

}

.section input{

width:100%;

height:50px;

margin-bottom:12px;

padding:0 15px;

background:#0B0F14;

border:1px solid rgba(255,255,255,.05);

border-radius:14px;

color:white;

font-size:15px;

outline:none;

}

.section textarea{

width:100%;

min-height:140px;

padding:15px;

background:#0B0F14;

border:1px solid rgba(255,255,255,.05);

border-radius:14px;

color:white;

font-size:15px;

resize:vertical;

outline:none;

margin-bottom:10px;

}

.section input:focus,
.section textarea:focus{

border-color:var(--accent);

}

.save-btn{

width:100%;

height:60px;

border:none;

border-radius:18px;

cursor:pointer;

font-size:18px;

font-weight:700;

color:white;

background:linear-gradient(
135deg,
var(--accent),
var(--accent-light)
);

margin-top:10px;

}

/* SCROLLBAR */

::-webkit-scrollbar{

width:8px;

}

::-webkit-scrollbar-track{

background:#111827;

}

::-webkit-scrollbar-thumb{

background:var(--accent);

border-radius:50px;

}

/* MOBILE */

@media(max-width:768px){

header{

flex-direction:column;

gap:15px;

align-items:flex-start;

}

.login-box{

margin-top:50px;

}

.section{

padding:20px;

}

header h1{

font-size:24px;

}

}