@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 */
}

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

  font-family: Poppins-ExtraBold, sans-serif;
  background-color: #000fe9;
  background-image: linear-gradient(67deg, #000fe9 0%, #cefef8 100%);
  
}

.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: 5%;
  height: 100%;
  margin-bottom: 20px;
}

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: 90vh;
  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;
}

.wrap-login {
  max-width: 100%;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 3.25rem;
  overflow: hidden;
  padding: 8px 40px 10px 40px;
 
}

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

.login-form-title {
  display: block;
  font-family: Poppins-ExtraBold;
  font-size: 50px;
  color: #000000;
  line-height: 2;
  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: -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: 9px;
  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 */
  }
}
