body{
background:linear-gradient(135deg,#fdf4ff,#f0f9ff);
font-family:system-ui;
min-height:100vh;
display:flex;
flex-direction:column;
}

/* Navbar */
.header-nav{
 background: linear-gradient(90deg, #00C9FF 0%, #92FE9D 100%) !important;
border-bottom:2px solid #e879f9;
box-shadow:0 2px 6px rgba(0,0,0,0.08);
}

h4{
color: maroon;
font-size: 30px;
}
h5{
color:rgb(235, 54, 252);
font-size: 20px;
}

/* Center Form */
.auth-wrapper{
flex:1;
display:flex;
align-items:flex-start;
justify-content:center;
padding-top:60px;
padding-bottom:20px;
}

@media(max-width:768px){
.auth-wrapper{
align-items:center;
padding-top:20px;
}
}

/* Card */
.auth-card{
width:100%;
max-width:450px;
background:linear-gradient(135deg,#f5d0fe,#e9d5ff);
padding:30px;
border-radius:16px;
box-shadow:0 8px 25px rgba(147,51,234,0.15);
text-align:center;
transition:0.3s;
}

.auth-card:hover{
transform:translateY(-3px);
}

/* Logo */
.auth-logo{
width:160px;
margin-bottom:15px;
}

/* Input */
.form-control{
border-radius:10px;
border:1px solid #e5e7eb;
}

.form-control:focus{
border-color:#c084fc;
box-shadow:0 0 0 2px rgba(192,132,252,0.15);
}

/* Buttons */
.btn-primary{
background:#9333ea;
border:none;
border-radius:10px;
}

.btn-primary:hover{
background:#7e22ce;
}

.btn-success{
background:#22c55e;
border:none;
border-radius:10px;
}

.auth-link{
font-size:14px;
}

/* Captcha Image */
#captcha_img{
border-radius:6px;
}











.small-toast{
min-width:240px;
max-width:320px;
font-size:13px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.15);
padding:6px 12px;

/* Smooth Animation */
animation:slideIn 0.6s ease forwards;

/* Scroll Support */
max-height:80px;
overflow-y:auto;
}

/* Scrollbar Styling */
.small-toast::-webkit-scrollbar{
width:5px;
}
.small-toast::-webkit-scrollbar-thumb{
background:#fff;
border-radius:10px;
}

/* Smooth IN */
@keyframes slideIn{
0%{
transform:translateX(100%);
opacity:0;
}
100%{
transform:translateX(0);
opacity:1;
}
}

/* Smooth OUT */
.toast.hide-toast{
animation:slideOut 0.6s ease forwards;
}

@keyframes slideOut{
0%{
transform:translateX(0);
opacity:1;
}
100%{
transform:translateX(100%);
opacity:0;
}
}