html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

* {
  transition: all 0.3s ease-in-out;
  box-sizing: inherit;
}

.body {
}

.body .main {
  width: 100%;
  height: 85vh;
  padding-top: 4rem;
  display: flex;
  flex-direction: row;
  z-index: 1;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin: 30px 0;
}

.container-form {
  width: 50%;
  background: #F8F9FD;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(244, 247, 251) 100%);
  border-radius: 40px;
  padding: 25px 35px;
  border: 5px solid rgb(255, 255, 255);
  box-shadow: rgba(133, 189, 215, 0.8784313725) 0px 30px 30px -20px;
  margin: 20px;
}

.txtLogo {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn;
  animation-duration: 3s;
  height: 100%;
  max-height: 100px;
}

.txtLogo a {
  content: " ";
  color: rgb(7, 18, 112);
  text-shadow: 0px 8px 6px rgba(0, 0, 0, 0.4),
    0px 16px 26px rgba(0, 0, 0, 0.1),
    0px 36px 46px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  font-size: 7rem;
  font-family: "Lato", sans-serif;
  font-weight: bolder;

}

@keyframes fadeIn {
  0% {
    opacity: 0.1;
    transform: scale(0.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.formLogin {
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: #fff;
  max-width: 480px;
  width: 100%;
  margin-top: 10px;
}

.formLogin p {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
  font-weight: bold;
  color: #000;
}

.formLogin form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.formLogin form button {
  background-color: #5b84f5;
  color: #fff;
  -webkit-box-shadow: 0 0 0 rgba(80, 182, 255, 0.31);
  box-shadow: 0 0 0 rgba(80, 182, 255, 0.31);
  border: 0;
  padding: 10px;
  width: 100%;
  margin-top: 20px;
  border-radius: 5px;
}
.formLogin form button:hover {
  letter-spacing: 1.5px;
}

.formLogin form input {
  border: 1px solid #C3C3C3;
  background-color: #fff;
  color: #000;
  border-radius: 6px;
  padding: 9px 20px;
  transition: all 0.3s ease;
  margin-bottom: 14px;
  height: inherit;
  font-size: 15px;
  font-weight: 300;
  outline: 0;
  text-align: left;
  width: 100%;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgb(47, 127, 247);
  top: 0;
  left: 0;
  z-index: -1;
}


.footer {
  position: relative;
  width: 100%;
  background: rgb(54,134,255);
  min-height: 100px;
  padding: 50px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: none;
}

.social-icon,
.menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 10px 0;
  flex-wrap: wrap;
}

.social-icon__item,
.menu__item {
  list-style: none;
}

.social-icon__link {
  font-size: 2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
}
.social-icon__link:hover {
  transform: translateY(-10px);
}

.menu__link {
  font-size: 1.2rem;
  color: #fff;
  margin: 0 10px;
  display: inline-block;
  transition: 0.5s;
  text-decoration: none;
  opacity: 0.75;
  font-weight: 300;
}

.menu__link:hover {
  opacity: 1;
}

.footer p {
  color: #fff;
  margin: 15px 0 10px 0;
  font-size: 1rem;
  font-weight: 300;
}
.footer p.dev{
  margin: 0;
  font-size: 12px;
}
.wave {
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("../../assets/img/bg/wave.png");
  background-size: 1000px 100px;
}
.wave#wave1 {
  z-index: 1000;
  opacity: 0.8;
  bottom: 0;
  animation: animateWaves 4s linear infinite;
}
.wave#wave2 {
  z-index: 999;
  opacity: 0.4;
  bottom: 10px;
  animation: animate 4s linear infinite !important;
}

.wave#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animateWaves 3s linear infinite;
}

.wave#wave4 {
  z-index: 999;
  opacity: 0.6;
  bottom: 20px;
  animation: animate 3s linear infinite;
}

@keyframes animateWaves {
  0% {
    background-position-x: 1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}

@keyframes animate {
  0% {
    background-position-x: -1000px;
  }
  100% {
    background-positon-x: 0px;
  }
}