html,
body {
  height: 100dvh;
  width: 100%;

}

.wrapper {
  position: relative;
  height: 100vh;
  width: 100%;
}

.imagen-registro{
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  background-image: url(../assets/imagenes/foto-registro.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  
}

.container-formulario-registro{
  position: relative;
  margin-left: 50vw;
  width: 50vw;
  height: 100vh;
  overflow-y: auto;
  padding: 2rem;
  box-sizing: border-box;
  z-index: 2;
}

#marca{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto;
  width: 45%;
  cursor: pointer;
  color: var(--color-principal);
}


#logo-marca{
    width: 5rem;
    cursor: pointer;
}

.container-carga-dni{
  display: flex;
  justify-content: center;
}

.input-personalizado {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: var(--color-principal);
  font-weight: bold;
  border-radius: 0.3rem;
  cursor: pointer;
  border: 2px dashed;
  width: 40%;
  height: 15rem;
  margin: 2rem 0;
  opacity: 0.6;
  transition: 0.3s;
}

.input-personalizado:hover{
  opacity: 1;
  transition: 0.3s;
}

@media (max-width: 1625px) {
  h1{
    font-size: 1.2rem;
  }
}

@media (max-width: 992px) {
  
  .imagen-registro {
    display: none;
  }
  .container-formulario-registro {
    margin-left: 0;
    width: 100vw;
    height: auto;
    min-height: 100vh;
    padding: 2rem 1rem;
  }
}

@media (max-width: 767.98px) {
  .container-formulario-registro {
    padding: 1rem 0.5rem;
    width: 100vw;
  }
  .form-box {
    max-width: 100%;
    padding: 1rem;
  }
  #marca {
    width: 90%;
    flex-direction: column;
    gap: 0.5rem;
  }
  .input-personalizado {
    width: 90%;
    height: 10rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container-formulario-registro {
    padding: 0.5rem 0.2rem;
  }
  .input-personalizado {
    width: 100%;
    height: 8rem;
    font-size: 0.9rem;
  }
}
