/* style/login.css */

body {
  background: linear-gradient(to right, #00b4db, #0083b0);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.login-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 420px;
  width: 100%;
  margin: 2rem auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.login-card h3 {
  text-align: center;
  font-weight: 700;
  color: #0083b0;
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
}

.form-control {
  border-radius: 8px;
  padding: 0.6rem;
  border: 1px solid #ced4da;
}

.form-control:focus {
  border-color: #00b4db;
  box-shadow: 0 0 0 0.2rem rgba(0, 180, 219, 0.25);
}

.btn-primary {
  background-color: #0083b0;
  border-color: #0083b0;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #006b91;
}

.alert {
  font-size: 0.95rem;
  border-radius: 6px;
}

.text-center a {
  color: #00b4db;
  text-decoration: none;
}

.text-center a:hover {
  text-decoration: underline;
}

/* Responsiveness for small screens */
@media (max-width: 576px) {
  .login-card {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }
}
