body {
  background-color: #eaf0f9;
}

.logo {
  height: 60px;
}

h2 {
  font-family: "Roboto", sans-serif;
  color: #1455a3;
  margin: 0;
}

p {
  font-size: 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
}

li {
  font-size: 0.8rem;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.5rem;
}

header h1 {
  font-size: 1.5rem;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: #1455a3;
  margin: 0;
}

.btn-primary {
  background-color: #1455a3;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #092971;
}

.btnSingUp {
  background-color: #e6791a;
  color: white;
  border: none;
  padding: 5px 10px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btnSingUp:hover {
  background-color: #d45d0d;
}

.btnAceptar {
  background-color: #1455a3;
  color: white;
  border: none;
  padding: 5px 10px;
  width: 100%;
  font-size: 16px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btnAceptar:hover {
  background-color: #092971;
}

@media (max-width: 576px) {
  header h1 {
    font-size: 1.2rem;
  }

  .btnSingIn,
  .btnSingUp {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

/*Registro*/
.btnPersonaNatural {
  background-color: white;
  border: 2px solid #d3d4d5;
  border-radius: 15px;
  color: #1455a3;
  transition: background-color 0.3s ease;
  min-height: 250px;
  max-width: 300px;
}

.btnPersonaNatural:hover {
  border: 2px solid #016bd6;
  transition: border 0.8s ease;
}

.btnPersonaJuridica {
  background-color: white;
  border: 2px solid #d3d4d5;
  border-radius: 15px;
  color: #1455a3;
  transition: background-color 0.3s ease;
  min-height: 250px;
  max-width: 300px;
}

.btnPersonaJuridica:hover {
  border: 2px solid #016bd6;
  transition: border 0.8s ease;
}

.icono-persona-natural {
  background-image: url("../img/personanatural.png");
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}

.icono-persona-juridica {
  background-image: url("../img/personajuridica.png");
  width: 70px;
  height: 70px;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 auto;
}
