@font-face {
  font-family: Poppins-Medium;
  src: url('fuentes/poppins/Poppins-Medium.ttf'); 
}

@font-face {
  font-family: Poppins-Bold;
  src: url('fuentes/poppins/Poppins-Bold.ttf'); 
}

@font-face {
  font-family: Poppins-SemiBold;
  src: url('fuentes/poppins/Poppins-ExtraBold.ttf'); 
}

* {
  margin: 0;

  box-sizing: border-box;
}

.card-container {
  display: flex; /* Habilita el uso de flexbox */
  justify-content: center; /* Centra el contenido horizontalmente */
  align-items: center; /* Centra el contenido verticalmente */
}
      .tarjeta {
          width: 100%;
          max-width: 900px;
          padding: 5px;
          
          border-radius: 10px;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          transition: transform 0.3s, box-shadow 0.3s;
          margin: 15px;
          background-color: #fff; /* Añadir un fondo blanco para evitar sombras parciales */
      }

      .tarjeta:hover {
          transform: scale(1.05);
          box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      }

      h2 {
          color: black;
          margin: 0; /* Eliminar el margen predeterminado del h2 */
      }
body, html {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;

  font-family: Poppins-ExtraBold, sans-serif;
  background-color: #4158D0;
  background-image: linear-gradient(61deg, #4158D0 25%, #ffffff 95%);
}

.container-login {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(255,255,255,0), #eceff1, rgba(255,255,255,0));
}

.gradient-container {
  flex-grow: 1;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0), #eceff1, rgba(255,255,255,0));
}

.img, .wrap-login {
  position: relative;
  z-index: 2;
}

.container-fluid {
  position: relative;
  overflow: hidden;
  display: flex;
  align-content: center;
}

.row {
  width: 100%;
  height: 100%;
}

.col-md-8, .col-md-4 {
  padding: 0;
}

.img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.img img {
  max-width: 60%;
  height: 100%;
  margin-bottom: 20px;
}

.container-login {
  background: rgb(55,193,39);
  background: linear-gradient(90deg, rgba(55,193,39,1) 25%, rgba(197,213,80,0.9865196078431373) 50%, rgba(51,69,196,1) 86%);
  background-clip: border-box;
  min-height: 100%;
  display: flex;
  align-items: center;
}

input {
  outline: none;
  border: none;
}

button {
  outline: none !important;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

.responsive-img {
  max-width: 100%;
  height: 250px;
  display: block;
  margin:  auto;
}

.container-login {
  width: 100%;  
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding: 15px;
  background: rgb(55,193,39);
  background: linear-gradient(90deg, rgba(55,193,39,1) 25%, rgba(197,213,80,0.9865196078431373) 50%, rgba(51,69,196,1) 86%);
  background-clip: border-box;
  border: 0 solid transparent;
  border-radius: 1.25rem;
  margin-bottom: 1.2rem;
  box-shadow: 0 2px 6px 0 rgb(218 218 253 / 95%), 0 2px 6px 0 rgb(206 206 238 / 54%);
}

.wrap-login {
  max-width: 100%;
  margin: 0 auto;
  background: #eceff1;
  border-radius: 3.25rem;
  overflow: hidden;
  padding: 55px 45px 45px 43px;
  box-shadow: 25px 40px 28px 0px rgba(0, 0, 0, 0.38);
}

.login-form {
  width: 100%;
  height: 100%;
}

.login-form-title {
  display: block;
  font-family: Poppins-ExtraBold;
  font-size: 50px;
  color: #000000;
  line-height: 2.0;
  text-align: center;
}

.wrap-input100 {
  width: 100%;
  position: relative;
  border-bottom: 2px solid #240086;
  margin-bottom: 37px;
}

.input100 {
  font-family: Poppins-ExtraBold;
  font-size: 22px;
  color: #1900ff;
  line-height: 1.2;
  display: block;
  width: 100%;
  height: 45px;
  background: transparent;
  padding: 0 5px;
}

.focus-efecto {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-efecto::before { /*efecto de los inputs*/
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 4px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
  background: #6a7dfe;
  background: -webkit-linear-gradient(left, #21d4fd, #b721ff);
  background: -o-linear-gradient(left, #21d4fd, #b721ff);
  background: -moz-linear-gradient(left, #21d4fd, #b721ff);
  background: linear-gradient(left, #21d4fd, #b721ff);
}

.focus-efecto::after {
  font-family: Poppins-ExtraBold;
  font-size: 25px;
  color: #050505;
  line-height: 1.2;
  content: attr(data-placeholder);
  display: block;
  width: 100%;
  position: absolute;
  top: 16px;
  left: 0px;
  padding-left: 5px;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.input100:focus + .focus-efecto::after {
  top: -15px;
}

.input100:focus + .focus-efecto::before {
  width: 100%;
}

.has-val.input100 + .focus-efecto::after {
  top: -15px;
}

.has-val.input100 + .focus-efecto::before {
  width: 100%;
}

.container-login-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 13px;
  text-align: center;
}

.wrap-login-form-btn {
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 40px 5px;
  overflow: hidden;
  margin: 0 auto;
}

.login-form-bgbtn {
  position: absolute;
  z-index: -1;
  width: 300%;
  height: 100%;
  background: #a64bf4;
  background: -webkit-linear-gradient(left, #3cce2f, #ecf40d, #170eb7,#170eb7);
  background: -o-linear-gradient(left,#3cce2f,   #ecf40d,#170eb7, #170eb7);
  background: -moz-linear-gradient(left,#3cce2f,  #ecf40d,#170eb7, #170eb7);
  background: linear-gradient(left, #3cce2f,  #ecf40d,#170eb7, #170eb7);
  top: 0;
  left: -100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login-form-btn {
  font-family: Poppins-ExtraBold;
  font-size: 25px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 50px;
}

.wrap-login-form-btn:hover .login-form-bgbtn {
  left: 0;
}

@media (max-width: 576px) {

  .container-login {
    text-align: center;
   
  }
  .wrap-login {
    padding: 50px 10px;
    max-width: 90%;
    
    margin: 0 auto; /* Esta línea centrará el elemento en la columna */
    
  }
.justified-paragraph{
  font-size: 14px;
}
  .responsive-img {
      max-width: 70%;
      height: 140px;
      display: block;
      margin: 0 auto;
  }
  .col-md-8{
    display: none; /* Oculta la columna en dispositivos móviles */
  }

  
}
