body {
  background-image: url("../img/hexbg.jpg");
  font-family: "Poppins", sans-serif;
  background-size: auto 100vh;
  font-weight: 400;
  overflow: hidden;
}
.container {
  height: 600px;
}
.row {
  margin: 0;
  position: absolute;
  top: 40%;
  left: 40%;
}
@media only screen and (max-width: 767px) {
  .row {
    left: 15%;
    top: 40%;
  }
}
.btnth {
  border-radius: 10px;
  background-color: #d5242a;
  color: white;
  font-size: 1.2rem;
  font-weight: bolder;
  padding: 5px 20px;
}
.btnth {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}
.btnth:hover {
  color: #fff;
}
.btnth:after {
  content: "»";
  position: absolute;
  opacity: 0;
  top: 8px;
  right: -20px;
  transition: 0.5s;
}

.btnth:hover {
  padding-right: 24px;
  padding-left: 8px;
}

.btnth:hover:after {
  opacity: 1;
  right: 10px;
}
label{
  font-weight: 600;
}
.login {
  overflow: hidden;
  background-color: white;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  transform: translate(-50%, -50%);
  transition: transform 300ms, box-shadow 300ms;
  box-shadow: 5px 10px 10px rgba(2, 128, 144, 0.2);
}
.login::before,
.login::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-top-left-radius: 40%;
  border-top-right-radius: 45%;
  border-bottom-left-radius: 35%;
  border-bottom-right-radius: 40%;
  z-index: -1;
}
.login::before {
  left: 40%;
  bottom: -60%;
  background-color: rgba(144, 69, 69, 0.4);
  animation: wawes 6s infinite linear;
}
.login::after {
  left: 35%;
  bottom: -55%;
  background-color: rgba(144, 2, 2, 0.5);
  animation: wawes 7s infinite;
}
.login > input {
  display: block;
  border-radius: 5px;
  font-size: 16px;
  background: white;
  width: 100%;
  border: 0;
  padding: 10px 10px;
  margin: 15px -10px;
}
.login > button {
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  width: 100px;
  border: 0;
  padding: 10px 0;
  margin-top: 10px;
  margin-left: -5px;
  border-radius: 5px;
  background-color: rgba(244, 91, 105, 1);
  transition: background-color 300ms;
}

@keyframes wawes {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 12px;
}

.track,
.plane {
  position: absolute;
}

.plane-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
}

.plane {
  margin-top: -20px;
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-bottom: 40px solid #d5242a;
}

.plane-tail {
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 20px solid transparent;
  border-bottom: 10px solid #1d1e22;
}

.track {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.15);
}

.track-1 {
  top: -200px;
  left: -180px;
}

.track-1 .plane-wrapper {
  transform: translate(50%, 125%) rotate(45deg);
}

.track-2 {
  bottom: -150px;
  right: -190px;
}

.track-2 .plane-wrapper {
  transform: translate(50%, 125%) rotate(-150deg);
}

.track-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

@keyframes track-1-keyframes {
  0% {
    transform: rotate(-40deg);
  }
  100% {
    transform: rotate(320deg);
  }
}

.track-1 .track-inner {
  animation: track-1-keyframes 4s infinite linear;
}

@keyframes track-2-keyframes {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.track-2 .track-inner {
  animation: track-2-keyframes 4s infinite linear;
}
