.sign-box .card-v.animated-login-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.animated-login-form {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 2.25em;
    box-sizing: border-box;
    border: solid 1px #ddd;
    border-radius: 0.5em;
    background-color: #fff;
    font-family: inherit;
}

.animated-login-form--wide {
    max-width: none;
}

.animated-login-form--wide .row {
    --bs-gutter-y: 2rem;
}

.animated-login-form--wide .row + .row {
    margin-top: 0.5rem;
}

.animated-login-form--wide .row .inputGroup {
    margin-bottom: 2.25em;
}

.animated-login-form .svgContainer {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1em;
    border-radius: 50%;
    background: none;
    border: solid 2.5px #3a5e77;
    overflow: hidden;
    pointer-events: none;
}

.animated-login-form .svgContainer div {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-bottom: 100%;
}

.animated-login-form .svgContainer .mySVG {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.animated-login-form .inputGroup {
    margin: 0 0 2em;
    padding: 0;
    position: relative;
}

.animated-login-form .inputGroup:last-of-type {
    margin-bottom: 0;
}

.animated-login-form label {
    margin: 0 0 12px;
    display: block;
    font-size: 1.25em;
    color: #217093;
    font-weight: 700;
    font-family: inherit;
}

.animated-login-form input[type='text'],
.animated-login-form input[type='tel'],
.animated-login-form input[type='password'] {
    display: block;
    margin: 0;
    padding: 0 1em 0;
    background-color: #f3fafd;
    border: solid 2px #217093;
    border-radius: 4px;
    -webkit-appearance: none;
    appearance: none;
    box-sizing: border-box;
    width: 100%;
    height: 65px;
    font-size: 16px;
    color: #353538;
    font-weight: 600;
    font-family: inherit;
    transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
}

.animated-login-form input[type='text']:focus,
.animated-login-form input[type='tel']:focus,
.animated-login-form input[type='password']:focus {
    outline: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: solid 2px #4eb8dd;
}

.animated-login-form input[type='text'],
.animated-login-form input[type='tel'],
.animated-login-form input[type='password'] {
    padding: 14px 1em 0;
    text-align: right;
    direction: rtl;
}

.animated-login-form button[type='submit'] {
    display: block;
    margin: 0;
    
    background-color: #4eb8dd;
    border: none;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: none;
    width: 100%;
    height: 65px;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    font-family: inherit;
    transition: background-color 0.2s ease-out;
    cursor: pointer;
}

.animated-login-form button[type='submit']:hover,
.animated-login-form button[type='submit']:active {
    background-color: #217093;
}

.animated-login-form .inputGroup1,
.animated-login-form .inputGroup2,
.animated-login-form .inputGroup-float {
    overflow: hidden;
}

.animated-login-form .inputGroup1 .helper,
.animated-login-form .inputGroup2 .helper,
.animated-login-form .inputGroup-float .helper {
    position: absolute;
    z-index: 1;
    font-family: inherit;
    max-width: calc(100% - 2em);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.animated-login-form .inputGroup1 .helper1,
.animated-login-form .inputGroup2 .helper1,
.animated-login-form .inputGroup-float .helper1 {
    top: 50%;
    left: auto;
    right: 1.4em;
    transform: translate(0, -50%) scale(1);
    transform-origin: 100% 50%;
    text-align: right;
    color: #217093;
    font-size: 1.25em;
    font-weight: 400;
    line-height: 1;
    opacity: 0.65;
    pointer-events: none;
    transition: top 0.2s ease-out, transform 0.2s ease-out, opacity 0.2s linear;
}

.animated-login-form .inputGroup1:focus-within .helper,
.animated-login-form .inputGroup1.focusWithText .helper,
.animated-login-form .inputGroup2:focus-within .helper,
.animated-login-form .inputGroup2.focusWithText .helper,
.animated-login-form .inputGroup-float:focus-within .helper,
.animated-login-form .inputGroup-float.focusWithText .helper {
    top: 14px;
    transform: translate(0, 0) scale(0.65);
    transform-origin: 100% 0;
    opacity: 1;
}

.animated-login-form .inputGroup-extras {
    margin: 0 0 1.5em;
}

.animated-login-form .inputGroup-extras .form-check-label {
    font-size: 1em;
    color: #217093;
    font-weight: 400;
}

.animated-login-form .forgot-password-link {
    display: block;
    text-align: end;
    margin: -1.25em 0 2em;
    font-size: 0.95em;
    color: #217093;
}

.animated-login-form .forgot-password-link:hover {
    color: #4eb8dd;
}

.animated-login-form .captcha-group {
    margin-bottom: 1.5em;
}

.sign-box .animated-login-oauth {
    margin-top: 1.5rem;
}

