/* ===== RESET ===== */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:url('/assets/25.jpg') no-repeat center center/cover;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
}

/* ===== LAYOUT ===== */
.layout{
display:flex;
gap:40px;
align-items:center;
justify-content:center;
padding:20px;
max-width:950px;
width:100%;
margin:auto;
}

/* ===== LOGIN BOX ===== */

.login-container{
width:430px;
background:rgba(255,255,255,0.25);
backdrop-filter:blur(10px);
border-radius:20px;
padding:40px;
border:1px solid rgba(255,255,255,0.3);
box-shadow:0 8px 32px rgba(31,38,135,0.2);
display:flex;
flex-direction:column;
}

.login-header{
text-align:center;
margin-bottom:25px;
}

.login-header img{
width:180px;
margin-bottom:10px;
}

.login-header h2{
font-size:1.3rem;
color:#222b45;
}

/* ===== INPUT ===== */

.form-group{
margin-bottom:20px;
position:relative;
}

.neu-input input{
width:100%;
padding:14px 45px 14px 15px;
border-radius:12px;
border:none;
background:#eef1ff;
outline:none;
}

.neu-input label{
position:absolute;
top:50%;
left:15px;
transform:translateY(-50%);
font-size:0.9rem;
color:#777;
pointer-events:none;
transition:0.3s;
}

.neu-input input:focus + label,
.neu-input input:not(:placeholder-shown) + label{
top:0;
font-size:0.75rem;
background:#eef1ff;
padding:0 6px;
border-radius:6px;
color:#4a5ae2;
}

/* ===== BUTTON ===== */

.neu-button{
width:100%;
padding:14px;
border:none;
border-radius:12px;
background:linear-gradient(145deg,#4a5ae2,#6b78ff);
color:#fff;
font-weight:600;
cursor:pointer;
}

/* ===== SERVER WINDOW ===== */

.server-window{
width:430px;
display:flex;
align-items:center;
}

/* ===== SERVER PANEL ===== */

.server-panel{
width:100%;
background:rgba(10,18,40,0.82);
backdrop-filter:blur(16px);
border-radius:16px;
padding:22px;
color:#e9f1ff;
display:flex;
flex-direction:column;
box-shadow:0 0 25px rgba(0,0,0,0.3);
}

/* HEADER */

.server-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:10px;
}

.ssl-lock{
display:flex;
gap:8px;
color:#4ae38a;
font-size:0.85rem;
}

/* STATUS */

.server-status{
font-family:monospace;
font-size:0.85rem;
flex:1;
white-space:pre-line;
}

/* GRAPH */

.graph{
display:flex;
gap:4px;
height:60px;
align-items:flex-end;
margin-top:12px;
}

.graph-bar{
flex:1;
background:linear-gradient(180deg,#4aa3ff,#1a2a45);
border-radius:4px 4px 0 0;
}

/* PROGRESS */

.progress-bar-bg{
width:100%;
height:6px;
background:rgba(255,255,255,0.15);
border-radius:10px;
margin-top:10px;
}

.progress-bar-fill{
height:100%;
width:0;
background:linear-gradient(90deg,#4ae38a,#4aa3ff);
}

/* BADGE */

.cf-badge{
margin-top:auto;
font-size:0.7rem;
color:#9fb3ff;
display:flex;
gap:6px;
}

/* ===== MOBILE ===== */

@media(max-width:900px){

.layout{
flex-direction:column;
align-items:center;
}

.login-container,
.server-window{
width:90%;
max-width:430px;
}

}