body.login-page {
  background: radial-gradient(circle at 90% 90%, #ffffff 0%, #cce4ff 30%, #038a7e 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-container {
  max-width: 1200px;
}

.login-card-wrapper {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  padding: 20px;
  min-height: 500px;
}

.image-section img.full-height-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.login-card-body {
  border-radius: 1rem;
}

.login-box-msg {
  font-weight: 500;
  font-size: 1rem;
}

.form-label {
  font-weight: 500;
}

.login-logo a {
  color: #007bff;
  font-weight: bold;
  font-size: 28px;
  text-shadow: 1px 1px #ddd;
}

.card {
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  border-radius: 10px;
}

.btn-success {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-success:hover {
  background-color: #0056b3;
  border-color: #0056b3;
}

.bg-behind {
  position: absolute;
  top: 0;     left: 0;      width: 100%;      height: 100%;
  background-image:url('/images/bg-login-full.jpg');
  background-size: cover;      background-position: center;      opacity: 0.15;      z-index: 0;      border-radius: 1rem;
}

.login-card-wrapper {
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.full-height-image {
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767.98px) {
  .image-section {
    display: none !important;
  }
}