@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

/* body {
  font-family: "Quicksand", sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  width: 100%;
  background: rgb(201, 80, 193);
  background: linear-gradient( 
    9deg, #d7a9adab 0%, #0992f3a1 100% );
  background-image: url("../images/bg29.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
} */
body {
  margin: auto;
  font-family: -apple-system, BlinkMacSystemFont, sans-serif;
  overflow: auto;
  background: linear-gradient(315deg, rgba(101,0,94,1) 3%, rgba(60,132,206,1) 38%, rgba(48,238,226,1) 68%, rgba(255,25,25,1) 98%);
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
  background-attachment: fixed;
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}

.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
      transform: translateX(1);
  }

  25% {
      transform: translateX(-25%);
  }

  50% {
      transform: translateX(-50%);
  }

  75% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(1);
  }
}

.alert-success {
  color: #3a713a;
  background-color: #e2f7e2;
  border-color: #d7f4d7; }
  .alert-success hr {
    border-top-color: #c3efc3; }
  .alert-success .alert-link {
    color: #294f29; }

    .alert-danger {
      color: #853131;
      background-color: #ffdfdf;
      border-color: #ffd2d2; }
      .alert-danger hr {
        border-top-color: #ffb9b9; }
      .alert-danger .alert-link {
        color: #602323; }

        .alert {
          position: relative;
          padding: 0.75rem 1.25rem;
          margin-bottom: 1rem;
          border: 1px solid transparent;
          border-radius: 0.25rem; }

.alert-dismissible {
  padding-right: 3.8125rem; }
  .alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit; }

    .close {
      float: right;
      font-size: 1.3125rem;
      font-weight: 700;
      line-height: 1;
      color: #000;
      text-shadow: 0 1px 0 #fff;
      opacity: .5; }
      .close:not(:disabled):not(.disabled) {
        cursor: pointer; }
        .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
          color: #000;
          text-decoration: none;
          opacity: .75; }

          button.close {
            padding: 0;
            background-color: transparent;
            border: 0;
            -webkit-appearance: none; }

            .rtl .alert-dismissible .close {
              right: inherit;
              left: 0; }

.text-center {
  text-align: center !important;
}
#background {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #d2eeff7d;
  margin-top: 90px;
  margin-bottom: 90px;
  padding: 30px;
  border-radius: 30px;
}
.container-right {
  display: inline-block;
  margin-right: auto;
  margin-left: 120px;
  width: 260px;
  vertical-align: top;
}
.container-left {
  display: inline-block;
  margin-right: auto;
  margin-left: 100px;
  width: 420px;
  vertical-align: top;
}
input {
  box-sizing: border-box;
  background-color: #eeeeee;
  padding: 10px;
  border-radius: 20px;
  border: none;
  margin: 5px;
  width: 100%;
  padding-left: 20px;
  outline: none;
}
input[type="radio"] {
  width: auto;
}
.button:hover {
  background: #9dd395;
  transition: 500ms ease-in-out;
}
.button {
  cursor: pointer;
  width: 100%;
  background: #0992f3;
  color: #fff;
  display: inline-block;
}

.button_showpass:hover {
  background: #bcccba;
  transition: 500ms ease-in-out;
}
.button_showpass {
  cursor: pointer;
  width: 23%;
  background: #dd14147a;
  color: #1a0505;
  font-size: 10px;
  display: inline-block;
}

@media screen and (max-width: 600px) {
  #background {
    width: 100%;
  }
  .container-left {
    display: none;
  }
  .container-right {
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  * {
    box-sizing: border-box;
  }
}

#preloader {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999999;
  background: #fff; }

.loader {
  position: absolute;
  width: 5rem;
  height: 10rem;
  top: 50%;
  margin: 0 auto;
  left: 0;
  right: 0;
  transform: translateY(-50%); }

  .text-danger {
    color: red;
  }

input[type=checkbox] {
  vertical-align: middle !important;
  position: relative !important;
  bottom: 1px !important;
}
  
label {
  display: block !important;
}
.btn {
  padding: 8px 10px;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  background-color: #0787d7;
  border: none;
  border-radius: 15px;
  box-shadow: 0 9px rgb(250 250 250 / 65%)
}

.btn:hover {background-color: #0c4b72}

.btn:active {
  background-color: #44d707;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}