@keyframes translatex1 {
    to {
        transform: translateX(100px);
    }
}

@keyframes translatex2 {
    to {
        transform: translateX(40px);
    }
}

@keyframes translatex3 {
    to {
        transform: translateX(70px);
    }
}

.auth-page {
    background: #000 !important;
    justify-content: stretch;
    padding: 0 12px;
}

.auth-page .card {
    max-width: 500px;
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

.phone-form-group input,
.code-form-group input {
    border-color: #7987a1 !important;
}

.code-form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.code-form-group label {
    flex: 0 0 100%;
}

.code-form-group input {
    flex: 0 0 16%;
}

#codeInput .letter {
    text-align: center;
    max-width: 16%;
    min-width: 6.25%;
    padding: 5px 0;
    flex-grow: 1;
    font-size: 16px;
    font-weight: bold;
}

.error_msg {
    color: red;
    font-size: 10px;
    font-weight: 900;
}

.mr-10 {
    margin-right: 10px;
}


.primary_btn {
    line-height: 40px;
    font-size: 15px;
    font-weight: bold;
    padding: 0 25px;
    --bs-btn-color: #fff;
    --bs-btn-bg: transparent;
    --bs-btn-border-color: #ffffff;
    --bs-btn-hover-color: #69FF47;
    --bs-btn-hover-bg: transparent;
    --bs-btn-hover-border-color: #69FF47;
    --bs-btn-focus-shadow-rgb: 124, 134, 255;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: transparent;
    --bs-btn-active-border-color: #69FF47;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: transparent;
    --bs-btn-disabled-border-color: #ffffff
}

.auth-page > .row {
    height: 100%;
}

.auth-page .auth-form-wrapper {
    padding: 30px 60px;
    background: #1E2024;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.auth-page .auth-form-wrapper .animate-logo {
    margin-left: 300px;
}

.auth-page .auth-form-wrapper .auth-form {
    max-width: 500px;
    width: 100%;
    margin-top: 30px;
}

.auth-page .auth-side-wrapper {
    padding: 30px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.auth-page .auth-side-wrapper svg {
    max-width: 500px;
    position: absolute;
    top: 50%;
    right: calc(50% - 250px);
    transform: translateY(-50%);
}

.auth-page .auth-side-wrapper svg .draw {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear forwards;
    animation-delay: 0s;
}

.auth-page .auth-side-wrapper svg .grow {
    opacity: 0;
    animation: fade 1s linear forwards;
    animation-delay: 0.2s;
}

.auth-page .auth-side-wrapper svg .grow + .grow {
    animation-delay: 0.5s;
}

.auth-page .auth-side-wrapper svg .grow + .grow + .grow {
    animation-delay: 0.8s;
}

.auth-page .auth-side-wrapper svg .transx{
    animation: translatex1 1s linear forwards;
    animation-delay: 0.1s;
}
.auth-page .auth-side-wrapper svg .transx + .transx{
    animation: translatex2 1s linear forwards;
    animation-delay: 0.3s;
    cy:204px;
}
.auth-page .auth-side-wrapper svg .transx + .transx + .transx{
    animation: translatex3 1s linear forwards;
    animation-delay: 0.6s;
    cy:235px;
}

.auth-page .auth-side-wrapper img {
    max-width: 500px;
}

.auth-page .auth-form-wrapper .auth-form .form-title {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    margin: 10px 0;
}

.auth-page .auth-form-wrapper .auth-form .form-subtitle {
    color: #999999;
    font-size: 16px;
    font-weight: normal;
    margin: 0 0 30px;
}

.auth-page .auth-form-wrapper .auth-form .form-group {
    margin-bottom: 30px;
}

.auth-page .auth-form-wrapper .auth-form .form-group .form-label {
    color: #e6e6e6;
    font-size: 14px;
    font-weight: normal;
    margin: 0 0 5px;
}

.auth-page .auth-form-wrapper .auth-form .form-group .form-control {
    line-height: 30px;
    background: #55575c;
    border-width: 0;
    color:#fff;
}

.auth-page .auth-form-wrapper .auth-form #timer {
    font-size: 18px;
    color: #fff;
    font-weight: normal;
    margin-bottom: 30px;
}

.auth-page .auth-form-wrapper .auth-form #wronge_code_msg:not(.hidden) {
    margin-top: -20px;
    margin-bottom: 30px;
}

.poweredby a {
    color: #69FF47;
}