/* Login Page Background */
body {
  background: linear-gradient(135deg, #4e73df, #1cc88a);
  min-height: 100vh;
}

/* Center section */
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

/* Login Card Styling */
.card-primary {
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.95);
}

/* Card Header */
.card-primary .card-header {
  background: transparent;
  border-bottom: none;
  text-align: center;
  padding-top: 25px;
}

.card-primary .card-header h4 {
  font-weight: 700;
  color: #333;
}

/* Input fields */
.form-control {
  border-radius: 8px;
  height: 45px;
}

/* Login Button */
.btn-primary {
  background: linear-gradient(135deg, #4e73df, #1cc88a);
  border: none;
  border-radius: 8px;
  height: 45px;
  font-size: 16px;
  font-weight: 600;
}

.btn-primary:hover {
  opacity: 0.9;
}
