* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

.padre {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hijo {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hijo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/img_Login.avif');
  background-size: cover;
  background-position: center;
  filter: blur(7px);
  z-index: 0;
}

form {
  position: relative;
  z-index: 1;
  background-color: rgba(255, 255, 255, 1);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 510px;
}

.radio-inputs, .radio-label, .radios{
  cursor: pointer;
}

.cont-logo {
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 500px) {
  .padre {
    height: 100%;
  }

  .hijo {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .hijo::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    filter: none;
    background-image: none;
    background-color: #0F70B7;
  }

  form {
    width: 100vw;
    height: 100%;
    border-radius: 0;
    box-shadow: none;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}
