* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url(../img/empresa/login.jpg);
  background-size: cover;
}
.container-form {
  display: flex;
  max-width: 900px;
  height: 500px;
  border-radius: 20px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
  transition: all 1s ease;
  margin: 55px;
}

.card-product-image {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 20px !important; /* Espacio debajo de la imagen */
}




.card-product-image img {
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}


.information {
  display: flex;
  width: 40%;
  align-items: center;
  text-align: center;
  background-color: #c7eef3;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.info-childs {
  width: 100%;
  padding: 0 30px;
}

.info-childs h2 {
  font-size: 2.5rem;
  color: #333;
}

.info-childs p {
  margin: 15px 0;
  color: #555;
}

.info-childs input {
  background-color: transparent;
  outline: none;
  border: solid 2px #9191bd;
  border-radius: 20px;
  padding: 10px 20px;
  color: #9191bd;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
.info-childs input:hover {
  background-color: #9191bd;
  border: none;
  color: #fff;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
/* ///////////////////// PARTE DERECHA */
.form-information {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  text-align: center;
  background-color: #f8f8f8;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.form-information-childs {
  color: #333;
  font-size: 2rem;
}
.form-information-childs p {
  color: #555;
  font-size: 1.5rem;
}

.contenedor {
  display: flex;
  flex-direction: column; /* coloca los hijos uno debajo del otro */
  align-items: center;     /* centra horizontalmente */
  gap: 5px; 
  padding: 10px;              /* espacio entre los bloques */
}

.olvido, .no-tienes-cuenta {
  padding: 5px;
  width: 100%;             /* opcional: ocupa todo el ancho del contenedor */
  text-align: left;
}


.olvido, .no-tienes-cuenta .forgot-password{
 font-size: 14px;
}
.olvido, .no-tienes-cuenta .registrate{
  font-size: 14px;
}
.olvido, .no-tienes-cuenta .registrate:hover{

  font-size:15px ;
  color:#7a7a9a;
  /* border: solid 1px red; */
}


.form-information-childs .no_tienesCuenta {
  color: #555;
  font-size: 12px;
}



.form {
  margin: 30px 0 0 0;
}
.form label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border-radius: 20px;
  padding: 0 10px;
  background-color: #fff;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
.form label input {
  width: 100%;
  padding: 10px;
  background-color: #fff;
  border: none;
  outline: none;
  border-radius: 20px;
  color: #333;
}
.form label i {
  color: #b8aaaa;
}
.form button {
  background-color: #9191bd;
  color: #fff;
  border-radius: 20px;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  margin-top: 10px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.1);
}
.form button:hover {
  background-color: #7a7a9a;
}
.form .recuerdame {
  font-size: 1rem !important;
  border-radius: 0px !important;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0) !important;
  
}

.bienvenida {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 10px;
  font-style: normal;
  margin-top: 5px;
 
}

.btnregistro{

  color:black;
  background-color: red;
}
#registro:hover{
   box-shadow: 0 0px 0px rgba(0, 0, 0, 0) !important;
}


.hide {
  position: absolute;
  transform: translateY(-300%);
}

/*RESPONSIVE FORM*/

@media screen and (max-width: 750px) {
  html {
    font-size: 12px;
  }
}
@media screen and (max-width: 580px) {
  html {
    font-size: 10px;
  }
  .container-form {
    height: auto;
    flex-direction: column;
  }
  .information {
    width: 100%;
    padding: 20px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
  }
  .form-information {
    width: 100%;
    padding: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 0px;
  }
  .contenedor {
    flex-direction: column;
  }

}
