.auth-wrap {
    min-height: 100vh
}

.auth-wrap .container {
    width: min(100%,400px);
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    gap: 20px;
    padding: 20px
}

.auth-wrap .form {
    padding: 24px
}

.auth-wrap .logo {
    padding: 15px 10px 20px;
    background-color: var(--red);
    border-radius: 0 0 16px 16px;
    margin: -34px auto 0;
    width: 90px
}

.auth-wrap h1 {
    font-size: 1rem;
    margin-top: 40px
}

.auth-wrap .desc {
    font-size: .875rem;
    margin: 5px 0 12px
}

.auth-wrap .form-control {
    border-radius: 10px;
    letter-spacing: 1px;
    font-size: .875rem
}

.auth-wrap .form-control.sign::-webkit-input-placeholder {
    text-align: left
}

.auth-wrap .form-control.sign::-moz-placeholder {
    text-align: left
}

.auth-wrap .form-control.sign:-ms-input-placeholder {
    text-align: left
}

.auth-wrap .form-control.sign::-ms-input-placeholder {
    text-align: left
}

.auth-wrap .form-control.sign::placeholder {
    text-align: left
}

.auth-wrap .tito-btn {
    margin-top: 20px;
    border-radius: 10px
}

.auth-wrap .buttons>.tito-btn {
    margin-top: 0
}

.auth-wrap .buttons {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 10px auto;
    grid-template-columns: repeat(2,auto);
    gap: 10px;
    margin-top: 20px
}

.auth-wrap .terms {
    font-size: .75rem;
    padding: 14px 12px
}

.auth-wrap .terms .tito {
    border-bottom: 1px solid var(--red);
    margin-right: 5px
}

@media screen and (max-width:460px) {
    .auth-wrap .form {
        padding: 16px
    }

    .auth-wrap .logo {
        margin-top: -26px
    }

    .auth-wrap .buttons {
        -ms-grid-columns: 100%;
        grid-template-columns: 100%
    }
}

/*//new */

.loading-box {
position: absolute;
right: 0;
left: 0;
top: 0;
bottom: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: rgba(255,255,255,0.8);
z-index: 100000;
border-radius: 16px;
display: none;
}

.loading-box span.spinner {

  width: 80px;
  height: 80px;
  border: 2px solid;
      border-top-color: currentcolor;
      border-right-color: currentcolor;
      border-bottom-color: currentcolor;
      border-left-color: currentcolor;
  border-color: #6f7377 #6f7377 #6f7377 #f6f6f6;
  border-radius: 50%;
  -webkit-animation: spinner 1s linear infinite;
  animation: spinner 1s linear infinite;
  z-index:100000;

}
@keyframes spinner {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
