html,
body {
  height: 100%;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.body-bg {
  overflow: hidden;
  /* background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    background-image: url(/static/my-accounts/img/bg.png); */
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: -10;
}

.mask-group {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 70%;
  z-index: -10;
}

.mask-group img.vector {
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.mask-group img.orange-bird {
  position: fixed;
  width: 70%;
  top: 0;
  left: 0;
  max-height: 50%;
}

.mask-group img.white-bird {
  position: fixed;
  width: 65%;
  bottom: 30%;
  right: 0;
  max-height: 50%;
}

@media (min-width: 330px) {
  .mask-group img.orange-bird {
    width: 50%;
  }

  .mask-group img.white-bird {
    width: 50%;
  }
}


@media (min-width: 768px) {
  .mask-group img.orange-bird {
    width: 35%;
  }

  .mask-group img.white-bird {
    width: 35%;
    bottom: 32%;
  }
}

@media (min-width: 992px) {
  .mask-group img.orange-bird {
    width: 20%;
  }

  .mask-group img.white-bird {
    width: 25%;
    bottom: 32%;
  }
}

.container {
  background-color: #1A1A2E;
  width: 530px;
  padding: 20px 50px 0;
  border-radius: 12px;
  box-shadow: rgba(20, 20, 20, 0.2) 0px 0px 16px 2px, rgba(226, 219, 219, 0.37) 0px 0px 0px 16px;
}

/************* checkbox ****************/
.custom-control-label {
  text-indent: 5px;
}

.custom-control-input-danger:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #CBCBCB;
}
.custom-checkbox .custom-control-label::before {
  border-radius: 4px;
  background-color: transparent;
  width: 24px;
  height: 24px;
  left: -24px;
  top: -2px;
}

.custom-control-input-navy:checked ~ .custom-control-label::before {
  background-color: #1A1A2E;
  border-color: #CBCBCB;
}

.custom-control-label::after {
  width: 24px;
  height: 24px;
  top: -2px;
  left: -24px;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
  background-image: url('/static/my-accounts/img/icons/CBCBCB/tick.png');
}
/************* end of checkbox ****************/



@media (max-width: 535px) {
  .container {
    width: 90%;
    padding: 30px;
  }

  .container input[type=checkbox] {
    /* Double-sized Checkboxes */
    /* IE */
    -ms-transform: scale(1.5);
    /* FF */
    -moz-transform: scale(1.5);
    /* Safari and Chrome */
    -webkit-transform: scale(1.5);
    /* Opera */
    -o-transform: scale(1.5);
    transform: scale(1.5);
    margin-right: 5px;
  }
}

@media (max-width: 400px) {
  .container {
    width: 90%;
    padding: 10px;
  }
}

.logo {
  text-align: center;
  margin-bottom: 26px;
}

.form-title {
  text-align: center;
  font-weight: 700;
  font-family: Roboto;
  font-size: 24px;
  color: #FCFCFC;
}

/***************** form css ******************/
.cd-form {
  padding: 0;
}

.cd-form .fieldset {
  position: relative;
  margin: 1.16px 0;
}

.cd-form .fieldset:first-child {
  margin-top: 0;
}

.cd-form .fieldset:last-child {
  margin-bottom: 0;
}

.cd-form label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #868686;
}

.cd-form label.image-replace,
.cd-form i.fa {
  /* replace text with an icon */
  display: inline-block;
  position: absolute;
  left: 15px;
  top: 50%;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cd-form i.fa {
  color: #868686;
}

.cd-form label.image-replace,
.cd-form a.image-replace {
  height: 20px;
  width: 20px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent;
  text-shadow: none;
  background-repeat: no-repeat;
  background-position: 50% 0;
}

.cd-form label.cd-username {
  background-image: url("/static/my-accounts/img/icons/CBCBCB/user.png");
}

.cd-form label.cd-email {
  background-image: url("/static/my-accounts/img/icons/CBCBCB/sms.png");
}

.cd-form label.cd-password {
  background-image: url("/static/my-accounts/img/icons/CBCBCB/lock.png");
}

.cd-form label.cd-password-confirm {
  background-image: url("/static/my-accounts/img/icons/CBCBCB/lock2.png");
}

.cd-form label.cd-building {
  background-image: url("/static/my-accounts/img/icons/CBCBCB/building.png");
}

.cd-form input {
  margin: 0;
  padding: 0;
  border-radius: 12px;
  background-color: transparent;
  color: #CBCBCB;
}

.cd-form input.full-width {
  width: 100%;
}

.cd-form input.has-padding {
  padding: 9px 20px 9px 50px;
}

.cd-form input.has-border {
  border: 1px solid #CBCBCB;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}

.cd-form input.has-border:focus {
  border-color: #CBCBCB;
  box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
  outline: none;
}

.cd-form input.has-error {
  border: 1px solid #d76666;
}

.cd-form input[type=password] {
  /* space left for the HIDE button */
  padding-right: 65px;
}

.cd-form input[type=submit] {
  padding: 14px 0;
  cursor: pointer;
  background: #FCB712;
  color: #212121;
  font-weight: 700;
  font-size: 24px;
  line-height: 28.8px;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  box-shadow: rgba(237, 137, 11, 0.32) 0px 8px 22px 2px;
}

.no-touch .cd-form input[type=submit]:hover,
.no-touch .cd-form input[type=submit]:focus {
  background: #FCB712;
  outline: none;
}

.cd-form .toggle-password {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  padding: 6px;
  bottom: auto;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /* font-size: 14px;
    font-size: 0.875rem; */
  color: #343642;
  left: unset !important;
  width: 45px !important;
}

.eye {
  background-image: url("/static/my-accounts/img/icons/CBCBCB/eye.png");
}

.eye-slash {
  background-image: url("/static/my-accounts/img/icons/CBCBCB/eye-slash.png");
}

.cd-form label.remember-me {
  font-size: 14px;
  font-weight: 400;
  color: #EEEEEE;
}

a.forgot-password,
a.forgot-password:hover {
  position: absolute;
  right: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0B7B4B;
}

.cd-form .login-box-msg {
  color: #E31D1D;
  font-size: 13px;
  font-weight: 400;
}

.cd-form .cd-error-message,
.errorlist {
  display: inline-block;
  /* position: absolute;
    left: -5px;
    bottom: -35px; */
  /* padding: 0.8em; */
  z-index: 2;
  color: #E31D1D;
  font-size: 12px;
  font-weight: 400;
  border-radius: 0.25em;
  /* prevent click and touch events */
  pointer-events: none;
  /*! visibility: hidden; */
  /*! opacity: 0; */
  -webkit-transition: opacity 0.2s 0, visibility 0 0.2s;
  -moz-transition: opacity 0.2s 0, visibility 0 0.2s;
  transition: opacity 0.2s 0, visibility 0 0.2s;
}

/* triangle */
/* .cd-form .cd-error-message::after, .errorlist:after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: 100%;
    height: 0;
    width: 0;
    border-bottom: 8px solid rgba(215, 102, 102, 0.9);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  } */
.cd-form .cd-error-message.is-visible,
.errorlist.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.2s 0, visibility 0 0;
  -moz-transition: opacity 0.2s 0, visibility 0 0;
  transition: opacity 0.2s 0, visibility 0 0;
}

@media only screen and (min-width: 600px) {
  .cd-form .fieldset {
    margin: 20px 0;
  }

  .cd-form .fieldset:first-child {
    margin-top: 0;
  }

  .cd-form .fieldset:last-child {
    margin-bottom: 0;
  }

  .cd-form input.has-padding {
    padding: 11px 20px 11px 50px;
  }

  .google-sign-in,
  .cd-form input[type=submit] {
    padding: 16px 0;
  }
}

/***************** end form css ******************/

.hr-lines {
  position: relative;
  max-width: 100%;
  margin: 30px auto;
  text-align: center;
  color: #868686;
  font-size: 24px;
  font-weight: 700;
}

.hr-lines:before {
  content: " ";
  height: 1px;
  width: 179px;
  background: #868686;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
}

.hr-lines:after {
  content: " ";
  height: 1px;
  width: 179px;
  background: #868686;
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
}

.google-sign-in {
  padding: 14px 0;
  width: 100%;
  background-color: #EEEEEE;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #383838;
  border-radius: 12px;
}

p.sign-up {
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #EEEEEE;
  margin-top: 10px;
}

a.sign-up-link,
a.sign-up-link:hover {
  font-size: 20px;
  font-weight: 700;
  color: #0B7B4B;
}

a.terms,
a.terms:hover {
  color: #0B7B4B;
}
