/* ===== Custom styles extracted from inline HTML ===== */

/* Register step transitions */
.step {
  animation: fadeInRight 0.3s ease forwards;
}
.step.slide-out {
  animation: fadeOutLeft 0.3s ease forwards;
}
@keyframes fadeOutLeft {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-20px); }
}

/* Input group icon styling */
.input-group-icon {
  border-color: var(--border-color);
  border-radius: 0.75rem 0 0 0.75rem;
}
.input-group-icon + .form-control-carely {
  border-radius: 0 0.75rem 0.75rem 0;
}

/* Input group prefix (Rp) */
.input-group-prefix {
  border-color: var(--border-color);
  border-radius: 0.75rem 0 0 0.75rem;
}
.input-group-prefix + .form-control-carely {
  border-radius: 0 0.75rem 0.75rem 0;
}

/* Blob sizes for auth pages */
.blob-login-sage {
  width: 384px;
  height: 384px;
  top: -96px;
  right: -96px;
}
.blob-login-terracotta {
  width: 500px;
  height: 500px;
  bottom: -128px;
  left: -128px;
}
.blob-register-sage {
  width: 384px;
  height: 384px;
  top: 0;
  left: 25%;
}
.blob-register-terracotta {
  width: 384px;
  height: 384px;
  bottom: 0;
  right: 25%;
}

/* Auth card container */
.auth-card-container {
  max-width: 440px;
  z-index: 1;
}
.auth-card-container-lg {
  max-width: 640px;
  z-index: 1;
}

/* Progress bar height */
.progress-carely {
  height: 8px;
  border-radius: 1rem;
}

/* Service/summary box */
.box-soft {
  background: rgba(246, 243, 238, 0.5);
  border: 1px solid var(--border-color);
}
.box-softer {
  background: rgba(246, 243, 238, 0.3);
  border: 1px solid var(--border-color);
}

/* Alert boxes */
.alert-sage {
  background: rgba(91, 154, 107, 0.1);
  border: 1px solid rgba(91, 154, 107, 0.25);
}
.alert-terracotta {
  background: rgba(217, 80, 48, 0.08);
  border: 1px solid rgba(217, 80, 48, 0.2);
}

/* Success icon circle */
.success-icon-circle {
  width: 96px;
  height: 96px;
  background: rgba(91, 154, 107, 0.15);
}
.success-icon-circle i {
  font-size: 3rem;
}

/* Verification box */
.verification-box {
  max-width: 400px;
}

/* Upload area */
.upload-area {
  border-color: var(--border-color);
  cursor: pointer;
}

/* Notification badge */
.notif-badge {
  background: var(--warm-terracotta);
  font-size: 0.65rem;
}

/* Sidebar user avatar */
.sidebar-avatar {
  width: 40px;
  height: 40px;
  font-size: 0.8rem;
}

/* Sidebar user role text */
.sidebar-role {
  font-size: 0.75rem;
}

/* Session item in dashboard */
.session-item {
  background: rgba(246, 243, 238, 0.5);
  border: 1px solid var(--border-color);
}
.session-time {
  font-size: 0.75rem;
}

/* Chart bar height container */
.chart-container {
  height: 180px;
}

/* Action buttons in bookings */
.btn-action-sage {
  background: rgba(91, 154, 107, 0.15);
  color: var(--sage-green);
}
.btn-action-sage:hover {
  background: var(--sage-green);
  color: #fff;
}
.btn-action-danger {
  background: rgba(229, 57, 53, 0.1);
  color: var(--destructive);
}
.btn-action-danger:hover {
  background: var(--destructive);
  color: #fff;
}

/* Payment status box */
.payment-status {
  background: rgba(91, 154, 107, 0.1);
  border: 1px solid rgba(91, 154, 107, 0.25);
}

/* Tips box */
.tips-box {
  background: rgba(217, 80, 48, 0.08);
  border: 1px solid rgba(217, 80, 48, 0.2);
}


/* Outline border button */
.btn-outline-border {
  border: 1px solid var(--border-color);
}
.btn-outline-border:hover {
  background-color: var(--soft-cream);
}


/* ===== Login Split Layout ===== */
.login-left {
  background: linear-gradient(160deg, #1a3a2a 0%, var(--sage-dark) 40%, var(--sage-green) 100%);
}

.login-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.login-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.login-quote {
  border-left: 3px solid rgba(255, 255, 255, 0.4);
  padding-left: 1.25rem;
}

.login-left .blob {
  opacity: 0.15;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.6) !important;
}
