*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Segoe UI',sans-serif;
}

body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(-45deg,#667eea,#764ba2,#6dd5ed,#2193b0);
background-size:400% 400%;
animation:gradientBG 10s ease infinite;
}

@keyframes gradientBG{
0%{background-position:0% 50%}
50%{background-position:100% 50%}
100%{background-position:0% 50%}
}

.container{
background:rgba(255,255,255,0.15);
-webkit-backdrop-filter:blur(10px);
backdrop-filter:blur(10px);
padding:40px;
border-radius:15px;
width:350px;
box-shadow:0 15px 40px rgba(0,0,0,0.2);
text-align:center;
color:white;
}

input{
width:100%;
padding:12px;
margin:10px 0;
border:none;
border-radius:8px;
outline:none;
background:white;
}

button{
width:100%;
padding:12px;
border:none;
border-radius:8px;
background:linear-gradient(to right,#00c6ff,#0072ff);
color:white;
cursor:pointer;
transition:0.3s;
margin-top:10px;
}

button:hover{
transform:translateY(-2px);
box-shadow:0 6px 15px rgba(0,0,0,0.3);
}

a{
color:white;
font-weight:bold;
text-decoration:none;
}

a:hover{
text-decoration:underline;
}

.dashboard-container{
width:800px;
max-width:95%;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:20px;
}

.card{
background:white;
color:black;
padding:20px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
}

.toast{
position:fixed;
top:20px;
right:20px;
background:#333;
color:white;
padding:15px 20px;
border-radius:8px;
opacity:0;
transition:0.4s;
}

.toast.show{
opacity:1;
}

/* Simple Dashboard */

.simple-dashboard{
text-align:center;
}

.welcome{
margin-top:20px;
font-size:18px;
}

.logout-btn{
margin-top:25px;
width:200px;
}