@import url("https://fonts.googleapis.com/css?family=Montserrat&display=swap");


body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #4a6670;
}

.fade-in {
    opacity: 0;
    animation: fadeInAnimation 0.4s ease-in forwards;
}

@keyframes fadeInAnimation {
    to {
        opacity: 1;
    }
}

.by {
  font-weight: bold;
  color: #f3f7f0;
  text-decoration: none;
}

.by:hover {
  color: #c98294;
}

.login {
  font-weight: bold;
  color: #565656;
  text-decoration: none;
}

.login:hover {
  color: #c98294;
}

.contenedor {
    text-align: center;
}

.titulo {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #565656;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);

}

.slogan {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);

}

.formulario-login {
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.4);
    transition: 0.3s;
    border-radius: 5px;
    background-color: #f3f7f0;
    min-width: 200px;
    max-width: 400px;
    margin: 10px 10px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-right: 30px;

}

.formulario-login:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.3);
}

.input-label {
    color: rgb(188, 188, 188);
}

.input-box {
    padding: 10px;
    border: 1px solid #00000039;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
    margin-top: 8px;
    margin-bottom: 10px;

}

.input-box:focus {
    border: 1px solid #fa9373;
    outline: none;
    /* box-shadow: 0 0 5px #0066cc; */
}

.boton-accion {

    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    background-color: #c98294;
    color: white;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.boton-accion:hover {
    background-color: #7d3647;
}

.boton-accion:active {
    background-color: #fa9373;
}









span {
    font-family: "Montserrat Medium";
    max-width: 40ch;
    text-align: center;
    transform: scale(0.94);
    animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
  }
  @keyframes scale {
    100% {
      transform: scale(1);
    }
  }
  
  span {
    display: inline-block;
    opacity: 0;
    filter: blur(4px);
  }
  
  span:nth-child(1) {
    animation: fade-in 0.8s 1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(2) {
    animation: fade-in 0.8s 1.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(3) {
    animation: fade-in 0.8s 1.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(4) {
    animation: fade-in 0.8s 2s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(5) {
    animation: fade-in 0.8s 2.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(6) {
    animation: fade-in 0.8s 2.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  
  span:nth-child(7) {
    animation: fade-in 0.8s 2.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }

  span:nth-child(8) {
    animation: fade-in 0.8s 3s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }
  span:nth-child(9) {
    animation: fade-in 0.8s 3.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
  }

  
  @keyframes fade-in {
    100% {
      opacity: 1;
      filter: blur(0);
    }
  }
  