/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ELEMENTOS BASE */
button {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(90deg, #facc15, #fbbf24);
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

button:active {
  transform: translateY(0);
}

/* LINKS */
.forgot {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #6b7280;
}

/* INPUTS GENERALES */
.field {
  margin-bottom: 18px;
}

.field label {
  font-size: 13px;
  color: #6b7280;
  display: block;
  margin-bottom: 6px;
}

.field input {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  transition: all 0.2s ease;
}

.field input:focus {
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
}

.field input::placeholder {
  color: #9ca3af;
  font-size: 13px;
}

/* ANIMACIONES GENERALES */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}