@charset "utf-8";
/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* FONDO PRINCIPAL */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2e4c3f; /* Verde oscuro superior */
}

/* CONTENEDOR GENERAL */
.login {
  width: 100%;
  max-width: 400px;
  background-color: #2e4c3f;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

/* SECCIÓN DE BIENVENIDA */
.bienvenida {
  text-align: left;
  color: #fff;
  padding: 2rem;
  background-color: #2e4c3f;
}

.bienvenida h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.bienvenida p {
  font-size: 0.95rem;
  color: #e1e1e1;
}

/* SECCIÓN DEL FORMULARIO */
.formulario {
  background-color: #d3e1b3; /* Verde claro */
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  padding: 2rem 1.5rem;
  text-align: center;
}

/* TÍTULO DEL FORMULARIO */
.formulario h2 {
  color: #2e4c3f;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

/* CAMPOS DE ENTRADA */
.formulario input {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 30px;
  border: none;
  outline: none;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

/* ENLACE DE OLVIDO DE CONTRASEÑA */
.olvido {
  display: block;
  text-align: right;
  font-size: 0.8rem;
  color: #2e4c3f;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.olvido:hover {
  text-decoration: underline;
}

/* BOTÓN PRINCIPAL */
.boton-iniciar {
  width: 100%;
  background-color: #e7953c; /* Naranja */
  color: #fff;
  border: none;
  padding: 0.9rem;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.boton-iniciar:hover {
  background-color: #cf7c22;
}

/* DIVISIÓN */
.division {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.8rem 0;
  color: #2e4c3f;
  font-size: 0.9rem;
}

.division hr {
  flex: 1;
  border: none;
  border-top: 1px solid #2e4c3f;
}

/* ICONOS DE REDES SOCIALES */
.sociales {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.icono {
  width: 40px;
  height: 40px;
  background-color: #2e4c3f;
  border-radius: 8px;
  display: inline-block;
}

/* TEXTO DE REGISTRO */
.registro {
  font-size: 0.9rem;
  color: #2e4c3f;
}

.registro a {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

.registro a:hover {
  text-decoration: underline;
}
