html {
  min-height: 100%;
  margin-left: calc(100vw - 100%);
}
body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}
main {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}
.btn {
  border-radius: 15px !important;
}
.btn:hover {
  background-color: #fff;

  color: #000;
}
.btnactive {
  background-color: #fff;

  color: #000;
}
.h100 {
  height: 100vh;
}

.inputtcc {
  background-color: #f7fdff;
  width: 30vw;
  max-width: 350px;
  border-radius: 15px;
}

.form-control:disabled,
.form-control[readonly] {
  background-color: transparent;
  opacity: 1;
  border: none;
  color: #fff;
}
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip,
.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip {
  display: block;
}

.invalid-feedback {
  background-color: #c41f2d;
  display: none;
  width: 100%;
  margin-top: 0;
  margin-left: 30px;
  color: #ffffff;
  font-weight: 600;
  border: 1px #721018 solid;
  padding-left: 5px;
  max-width: 80%;
}
.was-validated .form-control:invalid,
.form-control.is-invalid {
  background-color: #c41f2d;
  /*border-radius: 25px 25px 0 0;*/
}
.btntcc {
  border-radius: 50px;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-left: 2rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-left: 2rem;
}
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
  padding-left: 2rem;
}
.form-floating > label {
  padding: 1rem 2rem;
}
.form-floating > .form-select {
  padding-left: 2rem;
}
.btntcc-left {
  border-radius: 50px 0 0 50px;

  display: inline-block;
}
.btntcc-right {
  border-radius: 0 50px 50px 0;

  display: inline-block;
}
.colh {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 90vh;
  padding-top: 2rem;
}
.an1 {
  z-index: 10000;
  background-color: #dbcdb7;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  -webkit-animation: linear;
  animation: linear;
  -webkit-animation-name: run1;
  animation-name: run1;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.an2 {
  z-index: 10001;
  background-color: rgb(219, 217, 213);
  width: 50vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  -webkit-animation: linear;
  animation: linear;
  -webkit-animation-name: run2;
  animation-name: run2;
  -webkit-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.an3 {
  z-index: 10000;
  background-color: rgb(114, 114, 112);
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  -webkit-animation: linear;
  animation: linear;
  -webkit-animation-name: run3;
  animation-name: run3;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
}

@-webkit-keyframes run1 {
  0% {
    visibility: visible;
    right: 0;
  }
  50% {
    right: 40%;
  }
  100% {
    right: 100%;
  }
}

@keyframes run1 {
  0% {
    visibility: visible;
    right: 0;
  }
  50% {
    right: 40%;
  }
  100% {
    right: 100%;
  }
}

@-webkit-keyframes run2 {
  0% {
    visibility: visible;
    right: 0;
  }

  50% {
    right: 50%;
  }
  100% {
    right: 100%;
  }
}

@keyframes run2 {
  0% {
    visibility: visible;
    right: 0;
  }

  50% {
    right: 50%;
  }
  100% {
    right: 100%;
  }
}

@-webkit-keyframes run3 {
  0% {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  50% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: 100%;
    opacity: 0;
  }
}

@keyframes run3 {
  0% {
    visibility: visible;
    right: 0;
    opacity: 1;
  }
  50% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: 100%;
    opacity: 0;
  }
}
