* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
}

/* Login Page Styles */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.login-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 2rem;
  text-align: center;
}

.login-body {
  padding: 2rem;
}

/* Dashboard Cards */
.stats-card {
  background: white;
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: none;
  transition: all 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.stats-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1rem;
}

.stats-icon.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.stats-icon.success {
  background: linear-gradient(135deg, #56ab2f 0%, #a8e6cf 100%);
}
.stats-icon.warning {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}
.stats-icon.info {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}
/* 


/* Text Mr Stepen */

.stephen-link {
    display: inline-block;
    font-weight: bold;
    font-size: 1.2rem;
    background: linear-gradient(270deg, #ff00cc, #3333ff, #00ffcc, #ffcc00, #ff00cc);
    background-size: 1000% 1000%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 8s linear infinite, popZoom 1.5s ease-in-out infinite;
    text-decoration: none;
    position: relative;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

@keyframes popZoom {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1) rotate(1deg);
    }
}
.stephen-link:hover {
    text-shadow: 0 0 10px #00ffe5, 0 0 20px #ff00cc;
    transform: scale(1.2) rotate(-2deg);
    transition: all 0.3s ease-in-out;
}