/* index start */

a:hover,
a:active,
a:focus {
    outline: none;
    text-decoration: none;
    color: #ff8c8c;
}

.left-container {
  position: relative;
}
.circle-1 {
  position: absolute;
  height: 800px;
  width: 800px;
  background: linear-gradient(
    -325deg,
    rgba(68, 174, 255, 1) 19%,
    rgba(197, 232, 254, 1) 85%
  );
  top: -138px;
  left: -150px;
  border-radius: 50%;
  animation: float2 20s ease-in-out infinite;
}
.circle-2 {
  position: absolute;
  height: 350px;
  width: 350px;
  background: linear-gradient(
    -325deg,
    rgba(68, 174, 255, 1) -26%,
    rgba(197, 232, 254, 1) 85%
  );
  top: 210px;
  left: 450px;
  border-radius: 50%;
  opacity: 0.5;
  animation: float3 20s ease-in-out infinite;
}
.circle-3 {
  position: absolute;
  height: 850px;
  width: 850px;
  background: linear-gradient(
    0deg,
    rgba(68, 174, 255, 1) 39%,
    rgba(197, 232, 254, 1) 81%
  );
  top: 400px;
  left: -60px;
  border-radius: 50%;
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}
.circle-4 {
  position: absolute;
  height: 40px;
  width: 40px;
  top: 139px;
  left: 618px;
  border-radius: 50%;
  background-color: #ff8c8c;
  animation: float4 20s ease-in-out infinite;
}
.circle-5 {
  position: absolute;
  height: 70px;
  width: 70px;
  top: 756px;
  left: 400px;
  border-radius: 50%;
  background-color: #ff8c8c;
  opacity: 0.4;
  animation: float5 20s ease-in-out infinite;
}
.box-1 {
  position: absolute;
  left: 320px;
  top: 240px;
  height: 220px;
  width: 170px;
  background-color: white;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}
.box-1 span {
  position: absolute;
  top: 45%;
  left: 55%;
  transform: translate(-50%, -50%);
}
.box-1 span img {
  height: auto;
  width: 80px;
}
.box-2 {
  position: absolute;
  left: 545px;
  top: 275px;
  height: 150px;
  width: 130px;
  background-color: white;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
}
.box-2 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
}
.box-2 span img {
  height: auto;
  width: 50px;
}
.box-3 {
  position: absolute;
  left: 510px;
  top: 445px;
  height: 150px;
  width: 130px;
  background-color: white;
  border-bottom-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.box-3 span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
}
.box-3 span img {
  height: auto;
  width: 45px;
}
.right-container {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
}
.input-username {
  height: 40px;
  width: 70%;
  -webkit-appearance: none;
  background-color: #fff;
  border: none;
  padding-left: 30px;
  height: 70px;
  font-weight: 600;
  font-size: 18px;
  color: #182141;
  border-bottom: 0.1px solid #eee;
}
.input-username::placeholder {
  font-size: 18px;
  color: #435d68;
}
.input-username:focus {
  outline: none;
}
.input-password {
  height: 40px;
  width: 70%;
  -webkit-appearance: none;
  background-color: #fff;
  border: none;
  padding-left: 30px;
  height: 70px;
  font-weight: 600;
  font-size: 18px;
  color: #182141;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 9;
}
.input-password::placeholder {
  font-size: 18px;
  color: #435d68;
}
.input-password:focus {
  outline: none;
}
.input-button {
  color: #fff;
  background-color: #ff8c8c;
  padding: 25px 0 20px 0;
  width: 70%;
  font-weight: 600;
  font-size: 16px;
  margin-top: -10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-decoration: none;
}
/* .input-button:hover {
  color: #fff;
  text-decoration: none;
} */
.input-button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.input-button span:after {
  content: "\00bb";
  position: absolute;
  opacity: 0;
  top: -12px;
  right: -20px;
  transition: 0.5s;
  font-size: 30px;
}

.input-button:hover span {
  padding-right: 30px;
}

.input-button:hover span:after {
  opacity: 1;
  right: 0;
}
.input-button:active {
    box-shadow: 0 5px rgba(199, 108, 108, 0.582);
    transform: translateY(2px);
  }
.input-forgot {
  width: 70%;
}
.input-forgot:hover {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.input-forgot:active {
  color: #fff;
  text-decoration: none;
}
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.3);
    transform: translatey(0px);
  }
}
@keyframes float2 {
  0% {
    transform: translatex(0px);
  }
  50% {
    transform: translatex(-20px);
  }
  100% {
    transform: translatex(0px);
  }
}
@keyframes float3 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(0px);
  }
  25% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(-20px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatex(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(0px);
  }
}
@keyframes float4 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(0px);
  }
  25% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(-20px);
    opacity: 1;
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatex(-20px);
    opacity: 0.4;
  }
  75% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatez(-20px);
    opacity: 0.8;
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(0px);
  }
}
@keyframes float5 {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(0px);
  }
  25% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatex(-20px);
    opacity: 0.8;
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(-20px);
    opacity: 0.4;
  }
  75% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatez(-20px);
    opacity: 1;
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.1);
    transform: translatey(0px);
  }
}
/* index end */
