/* ===========================
   FORGOT PASSWORD PAGE - ESTILOS
   =========================== */

body {
  font-family: 'Inter', sans-serif;
  background: 
    linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 100%),
    url('../wallpaper.jpg') center/cover no-repeat fixed;
  color: #1f2937;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.w-full {
  width: 100%;
}

.max-w-md {
  max-width: 28rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.bg-white {
  background-color: #ffffff;
}

.p-8 {
  padding: 2rem;
}

.rounded {
  border-radius: 0.375rem;
}

.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

h2 {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: bold;
}

.text-gray-900 {
  color: #111827;
}

.text-sm {
  font-size: 0.875rem;
}

.text-gray-600 {
  color: #4b5563;
}

.text-center {
  text-align: center;
}

.space-y-5 > * + * {
  margin-top: 1.25rem;
}

.block {
  display: block;
}

.font-medium {
  font-weight: 500;
}

.text-gray-700 {
  color: #374151;
}

.mt-1 {
  margin-top: 0.25rem;
}

input[type='email'] {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  background-color: #ffffff;
}

input[type='email']:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

button[type='submit'] {
  width: 100%;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  background-color: #dc2626;
  color: #ffffff;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

button[type='submit']:hover {
  background-color: #b91c1c;
}

.text-red-600 {
  color: #dc2626;
}

.text-red-600:hover {
  color: #b91c1c;
}

a {
  text-decoration: none;
}
