body {
  font-family: 'Dosis', sans-serif;
}

.login-design {
  display: grid;
  grid-template-columns: repeat(2, 50%);
  height: 100vh;
}

.waves {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login {
    background: linear-gradient(to right, #dc5c9c, #e4a46e);
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-data2 {
    border: 0px solid;
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  width: 60%;
}

.login-data2 h1 {
  font-weight: 200;
}

.input-group2 {
  position: relative;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 1.5rem;
}

.input-fill2{
    width: 100%;
}
.input-fill2 input {
    position: relative;
  border: none;
  border-radius: 10px;
  border-bottom: 1px solid #848f9a;
  width: 100%;
  height: 2rem;
  font-size: 1.0625rem;
  text-indent: 35px;
  line-height: 147.6%;
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.input-fill2 input:focus {
  outline: none;
  border-color: #1e85a0;
}

.input-fill2 input:hover {
  background-color: #e9ecef;
}

.input-fill2 input:focus + .input-label2 {
  top: -20px;
  margin-bottom: 2rem;
  color: #1e85a0;
}

.input-fill2 input:focus ~ i {
  color: #1e85a0;
}

.ocultable {
  display: block; /* O el valor necesario para mostrarlo */
}

.ocultar-span {
  display: none;
}

.input-fill2 .input-label2 {
  position: absolute;
  top: 5px;
  left: 38px;
  line-height: 147.6%;
  color: #848f9a;
  transition: top 0.2s;
  font-weight: 700;
}

.input-fill2 i {
  position: absolute;
  top: 5px;
  left: 8px;
  color: #848f9a;
  font-size: 1.5rem;
}

.login-form2 a {
  display: block;
  width: 85%;
  text-align: right;
  text-decoration: none;
  color: #848f9a;
  margin-bottom: 1.3rem;
  font-weight: 800;
  transition: 0.3s ease-in-out all;
  font-size: 18px;
}

.login-form2 a:hover {
  color: #6c1aef;
}

.btn-login2 {
  border-radius: 3rem;
  width: 45%;
  border: 1px solid #1e85a0;
  line-height: 1.6rem;
  font-size: 1.3rem;
  background-color: #1e85a0;
  color: #ffffff;
  padding: 0.5rem 0;
  transition: 0.3s ease-in-out all;
  font-weight: 500;
}

.btn-login2:hover {
  cursor: pointer;
  background-color: #ffffff;
  color: #1e85a0;
}

@media (max-width: 768px) {
  .login-design {
      display: grid;
      grid-template-columns: repeat(1, 100%);
      height: 100vh;
    }
    
  .waves {
  display: none;
    }
    .input-group2 {
      position: relative;
      width: 100%;
      margin: 0 auto;
      margin-bottom: 1.5rem;
    }
    
    
}

