/* ======= ESTILOS GENERALES ======= */
body {
  margin: 0;
  padding: 0;
  background-color: #F2F2F2;
  font-family: 'Roboto', sans-serif;
}

/* ======= HEADER ======= */
header {
  background-color: #EF3829;
  padding: 15px 20px;
  text-align: left;
}

.logoclaro {
  width: 60px;
  height: auto;
  display: block;
}

/* ======= CONTENEDOR LOGIN ======= */
.cuadro-login {
  position: relative;
  max-width: 700px;
  margin: 15px auto;
  padding: 15px 30px; /* reducido para que suba todo */
  background-color: #ffffff;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Logo dentro del cuadro */
.logoingreso {
  position: relative;
  top: 0;
  left: 0;
  margin: 0 auto 20px;
  display: block;
}

/* Texto "Ingresa" */
.ingresa {
  position: relative;
  top: 0;
  left: 0;
  margin: 10px auto;
  font-size: 20px;
  font-weight: bold;
  color: #080808;
}

/* Párrafo explicativo */
.parrafo {
  position: relative;
  top: 0;
  left: 0;
  margin: 10px auto 30px;
  font-size: 14px;
  max-width: 90%;
}

/* ======= INPUT ======= */
.input-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.email-input {
  width: 100%;
  max-width: 900px;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
  outline: none;
  margin-bottom: 30px;
}

/* Link "Olvidé mi contraseña" */
.olvide {
  display: block;
  margin: 10px auto 20px;
  font-size: 12px;
  color: #1F99B1;
  text-align: center;
  margin-right: 580px;
  margin-bottom: 150px;
  margin-top: -130px
}

/* ======= BOTONES ======= */
.boton-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-continuar {
  background-color: #EF3829;
  color: white;
  padding: 10px 135px;
  font-size: 16px;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 20px; /* <-- espacio debajo */
}

.btn-continuar1 {
  background-color: #fcfcfc;
  color: #1F99B1;
  padding: 10px 90px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #1F99B1;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Texto final */
.unica {
  margin-top: 20px;
  font-size: 16px;
  color: #1F99B1;
  display: block;
  text-align: center;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 768px) {
  .cuadro-login {
    padding: 60px 20px;
  }

  .email-input {
    max-width: 100%;
  }

  .btn-continuar,
  .btn-continuar1 {
    width: 100%;
    max-width: 320px;
  }

  .btn-continuar1 {
  padding: 10px 30px; /* ← Vuelve al valor original solo en móviles */
}

  .ingresa {
    font-size: 18px;
  }

  .parrafo {
    font-size: 13px;
  }

  .unica {
    font-size: 14px;
  }
  
  .olvide {
    margin-right: 200px;
  }
}





