*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;

/* Background Image + Overlay */
background:
linear-gradient(rgba(10,15,30,0.75), rgb(10 10 30 / 60%)),
url('/images/admin-bg.jpg') no-repeat center center;

background-size:cover;
background-attachment:fixed;
overflow:hidden;
}

@keyframes bgAnimate{
0%{background-position:0% 50%;}
50%{background-position:100% 50%;}
100%{background-position:0% 50%;}
}

/* Glass Card */

.container{
text-align:center;
padding:50px 40px;
background:rgba(255,255,255,0.05);
border-radius:25px;
backdrop-filter:blur(25px);
box-shadow:0 0 60px rgba(0,0,0,0.5);
max-width:600px;
width:100%;
color:#fff;
border:1px solid rgba(255,255,255,0.15);
animation:fadeIn 1.5s ease;
}

@keyframes fadeIn{
from{opacity:0;transform:translateY(40px);}
to{opacity:1;transform:translateY(0);}
}

/* Logo Glow Title */

h2{
font-size:37px;
font-weight:700;
letter-spacing:2px;
background:linear-gradient(90deg,#00dbde,#fc00ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:10px;
}

h3{
font-weight:300;
margin-bottom:20px;
color:#ccc;
}

p{
font-size:15px;
color:#ddd;
margin-bottom:30px;
}
a{
    color: darkturquoise;
}
/* Contact Cards */

.contact-box{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:15px;
margin-top:20px;
}

.card{
flex:1 1 45%;
padding:15px;
background:rgba(255,255,255,0.08);
border-radius:12px;
transition:0.3s;
}

.card:hover{
background:rgba(255,255,255,0.15);
transform:translateY(-5px);
}

.card h4{
font-size:14px;
margin-bottom:5px;
color:#aaa;
}

.card span{
font-size:14px;
}

/* Footer */

.footer{
margin-top:30px;
font-size:13px;
color:#bbb;
}

.footer span{
display:block;
margin-top:6px;
color:#888;
}

/* Mobile */

@media(max-width:600px){

h1{font-size:32px;}

.container{
padding:35px 25px;
}

.contact-box{
flex-direction:column;
}

}