.custom-sidebar {
  background-color: #C5D7EA;
  height: 90vh;
  /* #E9F1FA; */
  /* #D6E6F5 */
}

.custom-body {
  /*background: url("/images/login-bg.jpg");*/
  background-color: #396ba0;
  background-size: cover;
  background-position: center;
  height: 80vh;
  width: 100%;
  display: flex;
}

.transparent-login-container {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  animation: fadeInUp 0.8s ease-out;
  margin-bottom: 200px;
}

        
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

.glass-input {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 12px 15px !important;
  transition: all 0.3s ease;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.1) !important;
  color: white !important;
}

.glass-input::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.custom-btn-login {
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  border: none;
  border-radius: 12px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(238, 90, 36, 0.3);
  color: white;
  width: 100%;
}

.custom-btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 90, 36, 0.4);
  background: linear-gradient(45deg, #ee5a24, #ff6b6b);
  color: white;
}

.custom-login-title {
  color: white;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 300;
  font-size: 2rem;
}

.glass-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}

.custom-check-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.glass-checkbox:checked {
  background-color: #ff6b6b !important;
  border-color: #ff6b6b !important;
}

.custom-forgot-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.custom-forgot-link:hover {
  color: white;
}

.glass-input-group-text {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
  border-radius: 12px 0 0 12px;
}

.glass-input-group .glass-input {
  border-radius: 0 12px 12px 0 !important;
}

.glow-effect {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3) !important;
}

.success-state {
  background: linear-gradient(45deg, #10ac84, #00d2d3) !important;
}