body {
  font-family: 'Figtree', sans-serif;
  background: #E4F2FF;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 20px;
}

.login-container {
  position: relative;
  max-width: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mascot-image {
  position: absolute;
  left: -195px;
  top: -160px;
  width: 350px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.login-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 450px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.login-header {
  background: white;
  color: #333;
  padding: 2.5rem 2rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 20px 20px 0 0;
}

.login-header h2 {
  margin: 0;
  font-weight: 700;
  font-size: 2rem;
  color: #2c3e50;
}

.login-header p {
  margin: 0.5rem 0 0 0;
  color: #666;
  font-size: 0.95rem;
}

.login-body {
  padding: 2rem;
}

.form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  background-color: #f8f9fa;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #5DADE2;
  background-color: white;
  box-shadow: 0 0 0 0.2rem rgba(93, 173, 226, 0.15);
  outline: none;
}

.form-control::placeholder {
  color: #adb5bd;
}

.btn-login {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  background: linear-gradient(135deg, #5DADE2 0%, #3498DB 100%);
  border: none;
  color: white;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(93, 173, 226, 0.4);
  background: linear-gradient(135deg, #3498DB 0%, #2E86C1 100%);
}

.btn-login:active {
  transform: translateY(0);
}

.alert {
  border-radius: 10px;
  border: none;
  padding: 0.875rem 1rem;
  margin-bottom: 1.5rem;
}

.alert-danger {
  background-color: #fee;
  color: #c33;
  border-left: 4px solid #c33;
}

.login-footer {
  text-align: center;
  padding: 1rem 2rem 2rem;
  color: #666;
  font-size: 0.9rem;
}

.login-footer a {
  color: #5DADE2;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.login-footer a:hover {
  color: #3498DB;
  text-decoration: underline;
}

.login-footer p {
  margin-bottom: 0.5rem;
}

.help-text {
  font-size: 0.85rem;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .mascot-image {
    width: 150px;
    left: -30px;
    top: -30px;
  }
}

@media (max-width: 576px) {
  .mascot-image {
    width: 120px;
    left: -25px;
    top: -25px;
  }
  
  .login-card {
    max-width: 100%;
  }
  
  .login-header h2 {
    font-size: 1.5rem;
  }
  
  .login-body {
    padding: 1.5rem;
  }
}