.navbar-gradient {
  background: linear-gradient(135deg, #003c47 0%, #00696f 50%, #215d63  100%);
}

.custom-card {
  background: linear-gradient(135deg, #80a7e0, #e6f0ff);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 16px;
  padding: 1.5rem;
  transition: transform 0.2s ease-in-out;
}

.custom-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}


/* Premium Form Card */
.glass-form-card-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 420px;
  z-index: 1;
  padding: 1rem;
}

.glass-form-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 3rem 2.5rem !important;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.glass-form-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 35px 60px -12px rgba(0, 0, 0, 0.6);
}

/* Modern Inputs & Buttons */
.custom-input {
  background: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  border-radius: 12px !important;
  transition: all 0.3s ease !important;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.custom-input:focus {
  background: #ffffff !important;
  border-color: #0284c7 !important;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.15) !important;
}

.custom-btn {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  padding: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(2, 132, 199, 0.2);
}

.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(2, 132, 199, 0.3);
  color: white;
}
