.auth-logo-text {
  color: #ffffff;
}

.auth-logo-accent {
  background: linear-gradient(135deg, #a78bfa, #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Input */
.auth-input-wrapper {
  position: relative;
}

.auth-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.auth-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.auth-input::placeholder {
  color: #475569;
}

.auth-input:focus {
  border-color: #7c3aed;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

/* Remember me row */
.auth-remember-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-remember-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.auth-remember-checkbox {
  width: 16px;
  height: 16px;
  accent-color: #7c3aed;
  cursor: pointer;
}

.auth-remember-text {
  font-size: 13px;
  color: #94a3b8;
}

.auth-forgot-link {
  font-size: 13px;
  color: #a78bfa;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-forgot-link:hover {
  color: #c4b5fd;
}

/* Submit button */
.auth-submit-wrapper {
  padding-top: 4px;
}

.auth-submit {
  width: 100%;
  padding: 12px 24px;
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  letter-spacing: 0.01em;
}

.auth-submit:hover {
  opacity: 0.9;
}

.auth-submit:active {
  transform: scale(0.99);
}
