
  body {
      margin: 0;
      font-family: Arial, sans-serif;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background-color: #f2f2f2;
    }

    .login-container {
      display: flex;
      border: 0px solid #ccc;
      overflow: hidden;
      width: 850px; /* ajusta el ancho según tus necesidades */
      background-color: #fff;
      border-radius: 35px;
      text-align: center;
    }

    .text-container{
      text-align: center;
      padding: 75px;
      margin-left: 30px;
      display: inline-block;
     
      
    }

    
    .text-container label{
      text-align: left;
      padding: 1px;
      margin-left: 5px;
      display: inline-block;  /* USAR INLINE_FLEX PARA ALINEAR ICONOS Y LETRAS ESTABA EN BLOCK*/
      font-weight:bolder;
      text-align: center;
    }

    
    .inputconfig{
      
      text-align: center;
    }



    .form-container,
    .image-container {
      flex: 1;
    }

    .form-container {
      padding: 60px;
    
    }

    .image-container {
      background: url('/MyEhec/img/log.jpg') center/cover; /* ajusta la ruta y el tamaño de la imagen */
      
    }

    form {
      display: flex;
      flex-direction: column;
      overflow: hidden;
     
      border-radius: 17px;
    }

    h2 {
      text-align: center;
    
    }

    label {
      margin-bottom: 5px;
      margin-top: 5px;
    }

    input {
      padding: 8px;
      margin-bottom: 10px;
      border: 1px solid #ccc;
      border-radius: 10px;
    }

    button {
      background-color: #0f0f0f;
      color: white;
      padding: 13px;
      border: none;
      border-radius: 17px;
      cursor: pointer;
    }

    button:hover {
      background-color: #2b2b2b;
    }


