/* Authentication Pages Styles */
body {
  background: #f5f5f5 !important;
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
  background: #f5f5f5 !important;
}

.auth-card {
  background: white !important;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-width: 400px;
  width: 100%;
}

.auth-header {
  background: #e4202f !important;
  background: linear-gradient(135deg, #e4202f 0%, #b31a26 100%) !important;
  color: white !important;
  padding: 2rem;
  text-align: center;
}

.auth-header h3,
.auth-header p {
  color: white !important;
}

.auth-body {
  padding: 2rem;
  background: white !important;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  padding: 12px 15px;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: #e4202f !important;
  box-shadow: 0 0 0 0.2rem rgba(228, 32, 47, 0.25) !important;
}

.btn-primary {
  background: #e4202f !important;
  background: linear-gradient(135deg, #e4202f 0%, #b31a26 100%) !important;
  border: none !important;
  border-radius: 10px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  color: white !important;
}

.btn-primary:hover {
  background: #b31a26 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(228, 32, 47, 0.4) !important;
}

.alert {
  border-radius: 10px;
  border: none;
}

a {
  color: #e4202f !important;
}

a:hover {
  color: #b31a26 !important;
}
