 
  body {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background:red; 
      image-rendering: auto;

  }
  .logo1{
    width: 130px;
    border-radius: 50px;
    mix-blend-mode: hard-light;
  }
  .fot{
    width: 110px;
    border: 1px solid black;
    border-radius: 3px;
    
  }

  .container-form {
    display: flex;
    border-radius: 30px;
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.555);
    height: 500px;
    max-width: 900px;
    transition: all 1s ease;
    margin: 10px;
  }
  
  .information {
    width: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    background-color: #2d3250;
    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: #fffdfd;
  }
  
  .info-childs p {
    margin: 15px 0 ;
    color: #cdcdcd;
  }
  
  .info-childs input {
    background-color: transparent;
    outline: none;
    border: solid 2px #1a1919;
    border-radius: 20px;
    padding: 10px 20px;
    color: #ffffff;
    cursor: pointer;
    transition: background-color .3s ease;
  }
  
  .info-childs input:hover {
    background-color: #3d3a3a;
    border: none;
    color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
  }
  
  .form-information {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60%;
    text-align: center;
    background: #ffffff;
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
  }
  
  .form-information-childs {
    padding: 0 30px;
  }
  
  .form-information-childs h2 {
    color: #363030;
    font-size: 2rem;
  }
  
  .form-information-childs p {
    color: #3e3939;
  }
  .form {
    margin: 30px 0 0 0;
  }
  
  .form label {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-radius: 20px;
    padding: 0 10px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(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: #2d3250e1;
  }
  
  .form button[type="submit"] {
    background-color: #2d3250;
    color: #fff;
    border-radius: 20px;
    border: none;
    width: 60%;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
  }
  
  .form button[type="submit"]:hover {
    background-color: #424769;
  }
  
  .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: 0;
    }
  
    .form-information {
      width: 100%;
      padding: 20px;
      border-bottom-left-radius: 20px;
      border-top-right-radius: 0;
    }
  }
  .forgot-password-link{
    color: #1a1919;
  }
  .forgot-password-link:hover{
    color: #676f9d;
  }
  .custom-hr {
    color:#2d3250;
    opacity:1;
    height: 0.2rem !important; /* Ancho de la línea horizontal */
    width: 70px; /* Ancho deseado de la línea horizontal */
    margin-left:160px; /* Ajuste para colocarla en la izquierda */
    border-radius: 50px;
  }
  .custom-hr1 {
    color:#f9b17a;
    opacity:1;
    height: 0.2rem !important; /* Ancho de la línea horizontal */
    width: 70px; /* Ancho deseado de la línea horizontal */
    margin-left:0; /* Ajuste para colocarla en la izquierda */
    border-radius: 50px;
  }
  