/* Background styling */
.login-body {
  background: linear-gradient(
      135deg,
      rgba(41, 128, 185, 0.9),
      rgba(109, 213, 250, 0.8)
    ),
    url("../assets/joshco-logo.png") center/cover no-repeat fixed;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  position: relative;
  margin: 0;
}

/* Transparent overlay for readability */
.login-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

/* Login Card */
.login-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  width: 100%;
  max-width: 420px;
  padding: 40px 35px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.7s ease-in-out;
}

/* Logo and Brand */
.login-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.login-brand {
  color: #2c3e50;
  font-size: 24px;
}

/* Input fields */
.input-group-text {
  border: 1px solid #dcdcdc;
}

.form-control {
  border: 1px solid #dcdcdc;
  padding: 12px;
  font-size: 15px;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* Button */
.btn-primary {
  background-color: #3498db;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #2980b9;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
