/* public/assets/css/login.css */

body {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/login_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  max-width: 400px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #212529;
}

[data-bs-theme="dark"] .card {
  background-color: rgba(33, 37, 41, 0.95) !important;
  color: #f8f9fa;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-bs-theme="dark"] .form-label {
    color: #f8f9fa;
}

[data-bs-theme="dark"] .logo-subtitle {
    color: #adb5bd;
}

[data-bs-theme="dark"] .text-center.mb-3.border-top.pt-3 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.logo-container {
  text-align: center;
  margin-bottom: 1.5rem;
}

.login-logo {
  max-width: 180px;
  height: auto;
  margin-bottom: 0.5rem;
}

.logo-title {
  font-weight: 700;
  font-size: 1.8rem;
  color: #0d6efd;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.logo-subtitle {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.btn-primary {
  padding: 0.8rem 1.5rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0b5ed7 !important;
}
