body{
  background: linear-gradient(-45deg, #a453df, #5394df, #53badf, #51cdb0);
  /*background: linear-gradient(-45deg, #15457c, #15457c, #15457c, #15457c);*/
    background-size: 400% 400%;
    animation: gradient 6s ease infinite;
    height:100vh;
}
@keyframes gradient {
  0% {
    background-position: 0% 50%;
    }
  50% {
    background-position: 100% 50%;
    }
  100% {
    background-position: 0% 50%;
    }
}
.login_section_inner{
  display:flex;
  justify-content: center;
  height:100%;
}
.login_section_inner_block{
  background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.2) !important;
/*    background-color: rgb(10 10 10 / 51%) !important;*/
/*    background-color: #fff;*/
    padding: 45px 60px;
    position: relative;
}
.main_login_section_head h1{
color:#fff;
font-weight: 900;
font-size:33px !important;
}
.main_login_section_head h3{
    color: #0c1552cf;
    font-weight: 900;
    margin-top: 10px;
    font-size: 25px !important;
}
.main_login_section_head p{
  color: #fff;
    margin-top: 10px;
    font-size: 16px;
}
.custom_control{
  height:45px !important;
  background-color: transparent !important;
  outline: none;
  border: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 10px;
  border-radius: 12px;
  color: #fff !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-size:14px;
}
::placeholder {
  color: #fff !important;
  opacity: 1 !important; 
}

::-ms-input-placeholder { 
  color: #fff !important;
}
.custom_control:focus, .custom_control:active{
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.custom_control:focus{
box-shadow: none;
}
.login_checkbox_block {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.login-checkbox {
  margin-right: 3px;
}
.reset_button {
  padding: 4px 14px;
    color: #000 !important;
    background-color: #fff !important;
    border-radius: 25px;
    width: 140px;
    font-size: 14px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.main_login_section_head, .main_login_section_body {
  margin-top:25px;
}
.login_section{
  height: 100vh;
  display: flex;
  align-items: center;
}
.square {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  animation: square 10s linear infinite;
  animation-delay: calc(-1s * var(--i));
}

@keyframes square {
  0%,100% {
    transform: translateY(-20px);
  }
  
  50% {
    transform: translateY(20px);
  }
}
.square:nth-child(1) {
  width: 100px;
  height: 100px;
  top: -15px;
  right: -45px;
}

.square:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 105px;
  left: -125px;
  z-index: 2;
}

.square:nth-child(3) {
  width: 60px;
  height: 60px;
  bottom: 85px;
  right: -45px;
  z-index: 2;
}

.square:nth-child(4) {
  width: 50px;
  height: 50px;
  bottom: 35px;
  left: -95px;
}

.square:nth-child(5) {
  width: 50px;
  height: 50px;
  top: -15px;
  left: -25px;
}

.square:nth-child(6) {
  width: 85px;
  height: 85px;
  top: 165px;
  right: -155px;
  z-index: 2;
}
.login_custom_control{
  background-color:#fff !important;
  color:#000 !important;
}
@media (max-width: 767px) {
  .square:nth-child(5){
    left: -3px;
  }
  .square:nth-child(1) {
    width: 60px;
    height: 60px;
    right: 15px;
}
.square:nth-child(2) {
  width: 50px;
  height: 100px;
  top: 105px;
  left: -6px;
  z-index: 2;
}

.square:nth-child(3) {
    width: 40px;
    height: 40px;
    bottom: 85px;
    right: -6px;
    z-index: 2;
}
.square:nth-child(4) {
  width: 50px;
  height: 50px;
  bottom: -14px;
  left: -7px;
}
.square:nth-child(6) {
  width: 85px;
  height: 85px;
  bottom: -63px;
  right: 26px;
  z-index: 2;
  top:unset;
}
.login_section_inner_block{
  padding: 35px;
}
}
.common_btn{
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.common_btn i{
  margin-right:6px;
}
.google_btn{
  background-color: #db4437 !important;
  color: #fff !important;
  border: 1px solid;
}
.microsoft_btn{
  background-color: #039bc7 !important;
  color: #fff !important;
  border: 1px solid;
}