body {
  font-family: "Inter", sans-serif;
  background-image: url(../images/fondo.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 100vh;
}
/* Prevent image selection and overlay */
.logo-container img {
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard syntax */

  -webkit-user-drag: none; /* Prevent dragging */
  pointer-events: none; /* Disable interactions */
}

/* Optional: If you want to preserve image quality */
.logo-container img {
  image-rendering: -webkit-optimize-contrast; /* WebKit */
  image-rendering: crisp-edges; /* Firefox */
}
.container {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* Card styling */
.login-card {
  max-width: 700px;
  border-radius: 15px;
  overflow: hidden;
  border: none;
  transition: all 0.3s ease;
  width: 100%;
}

.login-card:hover {
  transform: translateY(-5px);
}

/* Background gradient for left panel */
.bg-gradient-primary {
  background: linear-gradient(135deg, #36b9cc 0%, #1a92a3 100%);
}

/* Form styling */
.form-floating .form-control {
  border: 1px solid #e0e0e0;
  padding-left: 20px;
  height: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.form-floating .form-control:focus {
  border-color: #36b9cc;
  box-shadow: 0 0 0 0.25rem rgba(54, 185, 204, 0.25);
}

.form-floating label {
  padding-left: 20px;
  color: #6c757d;
}

/* Button styling */
.btn-login {
  background: linear-gradient(to right, #36b9cc, #2596a8);
  color: white;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  box-shadow: 0 4px 10px rgba(54, 185, 204, 0.3);
  transition: all 0.3s ease;
}

.btn-login:hover,
.btn-login:focus {
  background: linear-gradient(to right, #2596a8, #1a7a88);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(54, 185, 204, 0.4);
}

.btn-login:active {
  transform: translateY(1px);
  box-shadow: 0 2px 5px rgba(54, 185, 204, 0.4);
}

/* Typography */
.text-primary {
  color: #36b9cc !important;
}

.text-white-50 {
  opacity: 0.8;
}

.text-muted-login {
  font-size: 0.75rem;
  color: #adb5bd;
}

/* Animación */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate__fadeIn {
  animation: fadeIn 1.5s;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .card-body {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .btn-login {
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
  }
}
