.ws-register-form {
  max-width: 450px;
  width: 100%;
}

.ws-field {
  margin-bottom: 16px;
}
.ws-field label {
  padding: 4px;
  font-weight: normal;
  font-size: 14px;
  color: #555555;
  margin-bottom: 5px;
  display: inline-block;
}
.ws-field .ws-form-control {
  min-height: 36px;
  background-color: transparent;
  width: 100%;
  border: 1px solid #ced4da;
  border-radius: 4px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  font-size: 14px;
  padding: 0.375rem 1.1em;
}
.ws-field .ws-input-alert {
  font-size: 14px;
  margin-top: 2px;
  display: none;
  color: red;
}
.ws-field .receive-opt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.ws-field .receive-opt .receive-sms, .ws-field .receive-opt .receive-zns {
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-basis: 49%;
  border-radius: 4px;
  border: 1px solid #E3E5E5;
  padding: 8px;
  transition: all .3s ease;
}
.ws-field .receive-opt .receive-sms:hover,
.ws-field .receive-opt .receive-zns:hover {
  background: #f1f1f1;
}
.ws-field .receive-opt .receive-sms__icon, .ws-field .receive-opt .receive-zns__icon {
  margin-right: 4px;
}
.ws-field .receive-opt .receive-sms__icon img, .ws-field .receive-opt .receive-zns__icon img {
  width: 26px;
  height: 26px;
  display: block;
}
.ws-field .receive-opt .receive-sms__title, .ws-field .receive-opt .receive-zns__title {
  text-align: center;
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  text-overflow: ellipsis;
  word-break: break-word;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ws-submit-container {
  text-align: center;
}
.ws-submit-container button[type=submit]:disabled {
  background: linear-gradient(90deg, rgb(224, 224, 224) 0%, rgb(224, 224, 224) 100%);
  border: none;
  color: #636363;
}

.ws-form {
  border: 0;
  width: 100%;
  max-width: 400px;
  overflow: hidden;
  background: white;
  border-radius: 0.25rem;
  margin: 2.5rem auto 1.5rem;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, .14);
}
.ws-form .form-control,
.ws-form .btn-primary {
  min-height: 40px;
}
.ws-form .form-text {
  margin-top: 0.5rem;
}
.ws-form .form-text a {
  color: #05a;
}
.ws-form .form-control {
  font-size: 14px;
}
.ws-form .form-control::placeholder {
  color:rgba(0,0,0,.26);
}
.ws-form .btn-primary {
  font-weight: 400;
  text-transform: uppercase;
}
.ws-form .card-body {
  padding: 30px;
}
.ws-form .card-title,
.ws-form .card-title > h3 {
  font-weight: 400;
  font-size: 1.25rem;
}
.ws-form .text-or {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #ccc;
  text-transform: uppercase;
  font-size: .75rem;
}
.ws-form .text-or span:first-child,
.ws-form .text-or span:last-child {
  width: 100%;
  height: .5px;
  background-color: #dbdbdb;
}
.ws-form .social-login {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.ws-form .social-login > div {
  background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .26);
    border-radius: 2px;
    color: rgba(0, 0, 0, .87);
    font-size: .875rem;
    height: 40px;
    padding: 0 2px;
    width: 100%;
    text-align: center;
    display: grid;
    align-items: center;
    cursor: pointer;
}
.ws-form .social-login > div:hover {
  background-color: rgba(0, 0, 0, .02);
}
.ws-form .social-login > div > span {
  gap: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ws-form .social-login > div > span::before {
    content: '';
    width: 22px;
    height: 22px;
    border-radius: 50%;
}
.ws-form .social-login .login-fb span::before {
  background-image: url(../images/social.png);
  background-position: 5.5555555556% 62.6666666667%;
  background-size: 325% 287.5%;
}
.ws-form .social-login .login-gg span::before {
  background-image: url(../images/social.png);
  background-position: 83.9285714286% 5.1546391753%;
  background-size: 722.2222222222% 638.8888888889%;
}
.ws-form .form-group.last {
  gap: 0.25rem;
  display: flex;
  font-size: .875rem;
  align-items: center;
  justify-content: center;
}
.ws-form .form-group.last span {
  color: rgba(0, 0, 0, .26);
}
.ws-form .form-group.last a {
  font-weight: 500;
  color: var(--ws-color-second);
}
.ws-form .field-pass {
  position: relative;
}
.ws-form .field-pass input {
  padding-right: 2.5rem;
}
.ws-form .field-pass span {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  height: 2.5rem;
  width: 2.5rem;
  right: 0;
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
}
.ws-form .field-pass svg {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .ws-form {
    margin: 1rem auto 1.5rem;
  }
  .ws-form .card-body {
    padding: 20px;
  }
}

.ws-login-form .card-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ws-login-form .card-title h3 {
  min-width: 96px;
}
.ws-login-form .login-qr {
  display: flex;
  align-items: center;
  margin-left: 1.25rem;
  justify-content: flex-end;
}
.ws-login-form .text-20 {
  font-size: 20px;
}
.ws-login-form img {
  max-width: 100%;
  height: auto;
}
.ws-login-form .qr {
  width: 180px;
  height: 180px;
  margin: auto;
}
.ws-login-form .login-qr-text {
  background-color: #fefaec;
  border: 2px solid #ffbf00;
    border-radius: 2px;
    color: #ffbf00;
    font-size: 1rem;
    font-weight: 700;
    margin-right: 1rem;
    padding: .6875rem .875rem;
    position: relative;
}
.ws-login-form .login-qr-text:after {
  background-color: #fefaec;
    border-right: 2px solid #ffbf00;
    border-top: 2px solid #ffbf00;
    box-sizing: border-box;
    content: "";
    height: .75rem;
    position: absolute;
    right: -.75rem;
    top: 50%;
    transform: rotate(45deg) translateX(-50%);
    width: .75rem;
}