@import url("https://fonts.googleapis.com/css?family=Nunito:300,400,600,700&display=swap");


body {
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  visibility: visible;
  color: #222;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-family: "Nunito", sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 36px;
  line-height: 42px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

h5 {
  font-size: 14px;
  line-height: 18px;
}

h6 {
  font-size: 12px;
  line-height: 24px;
}

/* login */
.wave {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100%;
  z-index: -1;
}

.wave{
  object-fit: cover;
  object-position: center;
}

.container {
  max-width: 100%;
  min-width: 100%;
} 

.container-login {
  width: 100vw;
  height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 7rem;
  padding: 0 2rem;
}

.login-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.img img {
  width: 60%;
}

.form-login {
  width: 70%;
}

.login-content img {
  height: 100px;
}

.login-content h2 {
  margin: 15px 0;
  color: #333;
  /* text-transform: uppercase; */
  font-size: 1.9rem;
}

.login-content .input-div {
  position: relative;
  display: grid;
  grid-template-columns: 7% 93%;
  margin: 25px 0;
  padding: 5px 0;
  border-bottom: 2px solid #d9d9d9;
}

.login-content .input-div.one {
  margin-top: 0;
}

.i {
  color: #d9d9d9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.i i {
  transition: 0.3s;
}

.input-div > div {
  position: relative;
  height: 45px;
}

.input-div > div > h5 {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
  font-size: 18px;
  transition: 0.3s;
}

.input-div:before,
.input-div:after {
  content: "";
  position: absolute;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #000;
  transition: 0.4s;
}

.input-div:before {
  right: 50%;
}

.input-div:after {
  left: 50%;
}

.input-div.focus:before,
.input-div.focus:after {
  width: 50%;
}

.input-div.focus > div > h5 {
  top: -5px;
  font-size: 15px;
}

.input-div.focus > .i > i {
  color: #000;
}

.input-div > div > input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0.5rem 0.7rem;
  font-size: 1.2rem;
  color: #555;
  font-family: "poppins", sans-serif;
}

.input-div.pass {
  margin-bottom: 4px;
}

.remember-forgot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.remember-forgot input[type="checkbox"] {
  margin-right: 5px;
}

.remember-forgot label {
  margin-right: 10px;
  font-size: 14px;
}

.remember-forgot a {
  text-decoration: none;
  color: #999;
  font-size: 14px;
  transition: 0.3s;
}

.remember-forgot a:hover {
  color: #000;
}

.remember-checkbox {
  margin-right: 10px; /* Puedes ajustar el margen según tus necesidades */
}

a {
  display: block;
  text-align: right;
  text-decoration: none;
  color: #999;
  font-size: 0.9rem;
  transition: 0.3s;
}

a:hover {
  color: #000;
}

.btn-login {
  display: block;
  width: 100%;
  height: 50px;
  border-radius: 25px;
  outline: none;
  border: none;
  background-color: #000000;
  background-size: 200%;
  font-size: 1rem;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  margin: 1rem 0;
  cursor: pointer;
  transition: 0.5s;
}
.btn-login:hover {
  background-position: right;
  color: #fff;
  background-color: #cb347a;
  border-color: #cb347a;
}

@media screen and (max-width: 2560px) {
  img {
    width: 60%;
  }
  .form-login {
    width: 80%;
  }
}

@media screen and (max-width: 1440px) {
  img {
    width: 60%;
  }
  .form-login {
    width: 80%;
  }
}

@media screen and (max-width: 1050px) {
  .container-login {
    grid-gap: 5rem;
  }
  img {
    width: 60%;
  }
  .form-login {
    width: 80%;
  }
}

@media screen and (max-width: 1000px) {
  .container-login {
    grid-template-columns: 1fr;
  }

  .img {
    display: none;
  }

  .wave {
    display: none;
  }

  .login-content {
    justify-content: center;
  }
}

@media screen and (max-width: 425px) {
  .form-login {
    width: 100%;
  }
}

