/*! tailwindcss base */
*,
::before,
::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid;
}
html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: ui-sans-serif, system-ui, sans-serif;
}
body {
  margin: 0;
}

/* UTILITIES MINIMAL (dipakai login) */
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.min-h-screen {
  min-height: 100vh;
}
.w-full {
  width: 100%;
}
.max-w-sm {
  max-width: 24rem;
}
.text-center {
  text-align: center;
}
.text-xs {
  font-size: 0.75rem;
}
.text-sm {
  font-size: 0.875rem;
}
.text-lg {
  font-size: 1.125rem;
}
.font-semibold {
  font-weight: 600;
}
.text-white {
  color: #fff;
}
.text-slate-800 {
  color: #1e293b;
}
.text-slate-400 {
  color: #94a3b8;
}
.bg-white {
  background: #fff;
}
.bg-gradient-to-br {
  background-image: linear-gradient(to bottom right, #f8fafc, #ecfeff);
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.shadow-sm {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.p-6 {
  padding: 1.5rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.space-y-4 > * + * {
  margin-top: 1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.left-3 {
  left: 0.75rem;
}
.right-3 {
  right: 0.75rem;
}
.top-1\/2 {
  top: 50%;
}
.-translate-y-1\/2 {
  transform: translateY(-50%);
}
.w-14 {
  width: 3.5rem;
}
.w-4 {
  width: 1rem;
}
.h-4 {
  height: 1rem;
}
.opacity-50 {
  opacity: 0.5;
}
.border {
  border-width: 1px;
}
.border-slate-200 {
  border-color: #e2e8f0;
}
.hover\:text-teal-600:hover {
  color: #0ca69b;
}
.hover\:opacity-90:hover {
  opacity: 0.9;
}

/* ===== CUSTOM LOGIN COMPONENT ===== */

:root {
  --primary: #0ca69b;
}

body {
  background: linear-gradient(135deg, #f8fafc, #ecfeff);
}

/* Card */
.card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Input */
.input {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem 0.5rem 2.25rem;
  font-size: 0.875rem;
}

.input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(12, 166, 155, 0.1);
}

/* Button */
.btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 0.6rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  transition: 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

/* Icon */
.icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  opacity: 0.5;
}
