.showpass-toggle {
  position: relative;
  height: auto;
  margin-top: 0px;
}
.showpass-toggle label {
  position: relative;
  margin-top: 4px;
  float: left;
  margin-left: 5px;
}

.lds-ring,
.lds-ring div {
  box-sizing: border-box;
}
.lds-ring {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  margin-top: 90px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 6px solid #0B57CF;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #0B57CF transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.popup-btn-google {
  background: none;
  outline: none;
  border: none;
  width: auto;
  height: 60px;
  margin-top: 70px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding: 0px;
  color: #AAAAAA;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  display: block;
}
.popup-btn-google img {
  background: #fff;
  border-radius: 2px;
  width: 40px;
  padding: 10px;
  height: auto;
  margin-bottom: 5px;
  text-align: center;
}

.link-box-navbar-title {
  padding-top: 10px;
  padding-bottom: 2px;
  font-size: 17px;
  font-weight: 300;
  margin-left: 30px;
}

.popup-box-login {
  background: #fff;
  max-width: 330px;
  height: auto;
  position: relative;
  margin: 50px auto;
  margin-top: 10%;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #000;
  border-radius: 5px;
}

.load-login-img {
  width: 10%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 5px;
  animation: mymoves 1s infinite linear;
}
@keyframes mymoves {
  100% { transform: rotate(360deg); }
}

.header-google {
  background: #fff;
  width: 100%;
  margin-bottom: 10px;
  padding-top: 20px;
  border-radius: 10px;
  position: relative;
}
.header-google img {
  width: 49px;
  padding-top: 0px;
  margin-top: -6px;
  float: left;
}

.header-google-centered {
  background: #fff;
  width: 100%;
  margin-bottom: 10px;
  padding-top: 20px;
  border-radius: 10px;
  position: relative;
}
.header-google-centered img {
  width: 49px;
  padding-top: 0px;
  margin-top: -6px;
}

.box-google {
  width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.txt-login-title {
  color: #000;
  font-size: 25px;
  font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
  font-weight: normal;
  text-align: left;
}

.txt-login-desc {
  padding-top: 8px;
  padding-bottom: 5px;
  font-size: 14px;
  font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
  font-weight: normal;
  text-align: left;
}
.txt-login-desc i {
  border: 2px solid #000;
  border-radius: 50%;
  padding: 3px;
  font-size: 11px;
  width: 18.9px;
  height: 18px;
  margin-right: 3px;
}
.txt-login-desc img {
  width: 16px;
  height: 16px;
  margin-right: 2px;
  margin-bottom: -4px;
}

input {
  background: #fff;
}
#form {
  width: 40vw;
  margin: 0 auto;
  margin-top: 50px;
}

.input-box.active-grey {
  .input-1 {
    border: 1px solid #dadce0;
  }
  .input-label {
    color: #80868b;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
    svg {
      position: relative;
      width: 11px;
      height: 11px;
      transition: 250ms;
    }
  }
}

.input-box {
  position: relative;
  margin: 0px 0;
  .input-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 15px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
    svg {
      position: relative;
      width: 15px;
      height: 15px;
      top: 2px;
      transition: 250ms;
    }
  }
  .input-1 {
    box-sizing: border-box;
    height: 50px;
    width: 100%;
    border-radius: 4px;
    color: #202124;
    border: 1px solid #dadce0;
    padding: 13px 15px;
    transition: 250ms;
    &:focus {
      outline: none;
      border: 2px solid #1a73e8;
      transition: 250ms;
    }
  }
}

.input-box.error {
  .input-label {
    color: #f44336;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
  }
  .input-1 {
    border: 2px solid #f44336;
  }
}

.input-box.focus,
.input-box.active {
  .input-label {
    color: #1a73e8;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
    svg {
      position: relative;
      width: 11px;
      height: 11px;
      top: 2px;
      transition: 250ms;
    }
  }
}
.input-box.active {
  .input-1 {
    border: 2px solid #1a73e8;
  }
}

.pull-right {
  float: right;
}
.clear {
  clear: both;
}

.btn-forgot-email {
  background: #fff;
  width: auto;
  height: auto;
  margin: 0px;
  margin-top: 5px;
  padding: 0px;
  color: #3166d3;
  font-size: 14.5px;
  font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
  font-weight: bold;
  letter-spacing: .25px;
  text-align: left;
  border: none;
  outline: none;
  float: left;
}

.btn-not-computer {
  background: #fff;
  width: auto;
  height: auto;
  margin: 0px;
  margin-top: 39px;
  padding: 10px;
  padding-left: 0;
  color: #737373;
  font-size: 12.5px;
  font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
  font-weight: normal;
  letter-spacing: .25px;
  text-align: left;
  border: none;
  outline: none;
  margin-bottom: 9px;
}

.notify-login {
  background: #fff;
  width: auto;
  height: auto;
  margin: 0px;
  margin-top: -7px;
  padding: 10px;
  padding-left: 0;
  color: #3166d3;
  font-size: 14.5px;
  font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
  font-weight: bold;
  letter-spacing: .25px;
  text-align: left;
  border: none;
  outline: none;
  margin-left: 6px;
}
.notify-login span {
  color: #1a73e8;
  font-weight: inherit;
}

.btn-create-account {
  background: #fff;
  width: auto;
  height: auto;
  margin: 0px;
  padding: 5px;
  padding-left: 0;
  color: #1a73e8;
  font-size: 14.5px;
  font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
  font-weight: normal;
  letter-spacing: .25px;
  text-align: left;
  border: none;
  outline: none;
  float: left;
}

.btn-login {
  background: #1a73e8;
  width: 28%;
  height: auto;
  margin: 0px;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  font-family: "Google Sans", roboto, "Noto Sans Myanmar UI", arial, sans-serif;
  font-weight: normal;
  letter-spacing: .25px;
  text-align: center;
  border: none;
  border-radius: 17px;
  outline: none;
  float: right;
  margin-top: 0px;
}

.form-group-showhide {
  width: 50px;
  height: 73%;
  margin-left: 88%;
  position: absolute;
  z-index: 9999999;
  cursor: pointer;
}
.form-group-showhide i {
  margin-top: 13px;
  margin-right: 20px;
  font-size: 25px;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

@media only screen and (max-width: 600px) {
  .footer-language,
  .footer-menu {
    margin-top: 70%;
  }
  .footer-language-account,
  .footer-menu-account {
    margin-top: 90%;
  }
}