/* === Background === */
body {
  height: 100vh;
  margin: 0;
  padding: 0;
  background: #f5f5f7; /* Apple soft grey */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "SF Pro Display", "Poppins", sans-serif;
}

/* === LOGIN CONTAINER === */
.register-box {
  width: 360px;
  max-width: 90%;
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(15px);}
  to   {opacity: 1; transform: translateY(0);}
}

/* === APPLE STYLE CARD === */
.card {
  background: #ffffffcc; /* semi white */
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding-top: 8px;
  border: 1px solid rgba(0,0,0,0.05);

  /* Apple-style soft shadow */
  box-shadow:
    0 20px 40px rgba(0,0,0,0.04),
    0 4px 12px rgba(0,0,0,0.06);
}

/* Hilangkan border glow warna-warni */
.card::before {
  display: none;
}

/* === CARD HEADER === */
.card-header {
  background: transparent !important;
  border: none;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1d1d1f; /* Apple black */
  margin-bottom: -5px;
  letter-spacing: 0.2px;
}

/* Logo Apple Style Look */
.logo {
  width: 150px;
  margin-bottom: 12px;
  filter: drop-shadow(0px 3px 6px rgba(0,0,0,0.15));
}

/* === INPUT FIELD – Apple Minimal === */
.form-control {
  background: #fafafa;
  border: 1px solid #d2d2d7;
  padding: 10px 12px;
  border-radius: 10px;
  color: #1d1d1f;
  font-size: 0.92rem;
  transition: 0.25s;
}

.form-control:focus {
  border-color: #FF7B00; /* Apple Blue */
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.25);
  background: #ffffff;
}

/* Placeholder */
.form-control::placeholder {
  color: #a1a1a6;
}

/* Icon input */
.input-group-text {
  background: #fafafa;
  border: 1px solid #d2d2d7;
  border-radius: 10px;
  color: #6e6e73;
}

/* === BUTTON Apple Style === */
.btn-primary {
  background: #FF7B00; /* Apple Blue */
  border: none;
  padding: 11px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 0.95rem;
  transition: 0.2s;
}

.btn-primary:hover {
  background: #eaee6e; /* Light Apple Blue */
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(0, 113, 227, 0.25);
}

/* Forgot password / links */
.text-center a {
  color: #FF7B00;
  font-weight: 500;
}

.text-center a:hover {
  text-decoration: underline;
}
