form {
  width: 100%;
}

#logo {
  height: 4rem;
}

#loginForm {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loginForm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../assets/img/main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(10px);
  z-index: 1;
}

.tarjeta.logiIn {
  position: relative;
  height: fit-content;
  width: fit-content;
  gap: 3rem;
  padding: 3.5rem 6.5rem;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

