body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  background: #f1f5f9;
}
.material-symbols-rounded {
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* Background pattern */
.login-bg {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(16,185,129,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(5,150,105,0.06) 0%, transparent 50%),
    #f8fafc;
}

/* Card */
.login-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07), 0 2px 12px rgba(0,0,0,0.04);
}

/* Input */
.login-input {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px 12px 42px;
  font-size: 14px;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.login-input:focus {
  border-color: #059669;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(5,150,105,0.1);
}
.login-input.is-error {
  border-color: #ef4444;
  background: #fff;
}

/* Button */
.login-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(5,150,105,0.25);
  font-family: 'Inter', sans-serif;
}
.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5,150,105,0.35);
}
.login-btn:active {
  transform: translateY(0);
}

/* Input icon wrapper */
.input-wrap { position: relative; }
.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 20px;
  pointer-events: none;
}
.input-icon-right {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 20px;
  cursor: pointer;
  transition: color 0.15s;
}
.input-icon-right:hover { color: #475569; }

/* Error message */
.field-error {
  font-size: 12px;
  color: #ef4444;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Success toast */
.toast-success {
  background: #d1fae5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
