* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
}

html, body {
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: #ffffff;
}

.page {
  min-height: 100%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 72px 16px 88px;
}

.icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #eaf2ff;
  box-shadow:
    0px 20px 30px rgba(0, 0, 0, 0.03),
    0px 8px 12px rgba(0, 0, 0, 0.08);
}

.icon {
  width: 28px;
  height: 28px;
}

.title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-top: 4px;
}

.subtitle {
  max-width: 620px;
  margin: 12px auto 24px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.card {
  width: 90%;
  max-width: 560px;
  margin: 12px auto 0;
  background: #ffffff;
  border-radius: 14px;
  padding: 20px;
  box-shadow:
    0px 20px 30px rgba(0, 0, 0, 0.03),
    0px 8px 12px rgba(0, 0, 0, 0.08);
}

input[type="email"] {
  height: 48px;
  width: 100%;
  padding: 0 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #0f172a;
  font-size: 16px;
  outline: none;
}

input::placeholder {
  color: #94a3b8;
}

input:focus {
  border-color: #bfdbfe;
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.10);
}

button {
  height: 48px;
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
}

button:hover {
  background: #1742b8;
}

.texto-ayud {
  margin-top: 4px;
  font-size: 12px;
  color: #94a3b8;
}