* {
  box-sizing: border-box;
}

body {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  margin: 0;
  padding: 0;
}

.auth-card {
  max-width: 900px;
  min-height: 450px;
  border: none;
  border-radius: 16px;
}

.auth-left {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Form Styling */
.form-control {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-label {
  font-weight: 500;
  color: #333;
  font-size: 13px;
  margin-bottom: 6px;
}

/* Button Styling */
.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Alert Styling */
.alert {
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
}

.alert-danger {
  background-color: #ffebee;
  color: #c62828;
}

/* Heading Styling */
h2 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

h5 {
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* Text Styling */
.small {
  font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .auth-card {
    min-height: auto;
  }

  .auth-left {
    display: none !important;
  }

  .col-md-6 {
    padding: 30px 20px !important;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-card {
  animation: fadeIn 0.5s ease;
}

/* Links */
a {
  color: #667eea;
  transition: color 0.3s ease;
}

a:hover {
  color: #764ba2;
  text-decoration: none;
}

.text-muted {
  color: #9ca3af;
}


/* INPUT */
.login-card input {
  width: 100%;
  padding: 10px 14px;
  border-radius: 6px;
  border: none;
  margin-bottom: 12px;
}

/* BUTTON */
.login-card button {
  width: 100%;
  padding: 10px;
  background: #1b5e20;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}


