:root {
  --brand: #ff9393;
  --dark: #111827;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-soft: #fafafa;
  --border: #e5e7eb;
  --success: #16a34a;
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  --radius: 16px;
  --container: 1200px;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--bg-soft);
}
.contenedor_inicio_sesion {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}
.formulario_de_inicio_sesion {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 400px;
  margin: 0 auto;
  text-align: center;
}
.formulario_de_inicio_sesion img {
  width: 9rem;
  height: 8rem;
  margin-bottom: 1rem;
}
.formulario_de_inicio_sesion input {
  width: 100%;
  height: 4rem;
  margin-bottom: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}
.alerta {
  font-size: 1.6rem;
  color: red;
  margin-bottom: 1rem;
}
/* botón */
.boton {
  background-color: var(--brand);
  color: var(--bg);
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.boton:hover {
  background-color: #ff7777;
}
/* dispositivos moviles */
@media (max-width: 768px) {
  .formulario_de_inicio_sesion {
      padding: 1rem;
  }
}