/* Auth Page Style */

:root {
    --primary-color: #0781e5;
    --page-background-color: #FFFFFF;
    --card-background-color: #FFFFFF;
    --button-text-color: #FFFFFF;
    --copyright-text-color: #667C99;
    }

    body {
    font-family: 'Inter', sans-serif;
    }

    .w-full {
        width: 100%;
    }

    .password-less-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
       transition: all .3s ease-in-out;
    }

    .password-less-wrapper .text-section {
        max-width: 300px;
        text-align: center;
    }

    .password-less-wrapper .title {
        margin-bottom: 10px;
        font-weight: 600;
    }

     .password-less-wrapper strong {
         font-weight: 500;
     }

    .password-less-wrapper .icon {
        width: 46px;
        height: 46px;
        margin-bottom: 20px;
    }

     .password-less-wrapper svg path {
        fill: var(--primary-color);
     }

     .password-less-wrapper .link {
         width: 100%;
         margin-top: 12px;
         display: flex;
         alignt-items: center;
         justify-content: center;
     }

     .password-less-wrapper .link svg {
         width: 20px;
         height: 20px;
         margin-right: 6px;
         transition: all .15s ease-in;
     }

      .password-less-wrapper .link:hover svg {
         transform: translateX(-2px);
      }

    .auth-passwordless {
        display: flex;
        justify-content: center;
    }

    .no-tab-close-section {
     display: none;
    }

     .no-close-tab-active .no-tab-close-section {
      display: flex;
     }

     .no-close-tab-active .hide-password-less {
         display: none;
     }

    .auth-main-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 40px 0;
    min-height: 100vh;
    background-color: var(--page-background-color);
    }

    .auth-wrapper {
    width: 460px;
    }

    .auth-inner {
    background: var(--card-background-color);
    border: 1px solid #eaeaea;
    box-shadow: 0px 24px 48px -12px rgb(0 0 0 / 8%);
    border-radius: 16px;
    padding: 48px;
     position: relative;
    }

    .auth-top-info {
        background-color: var(--primary-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        padding: 24px 28px;
        margin: -49px -49px 0;
        border-radius: 16px 16px 0 0;
    }

    .auth-top-info p {
        color: var(--button-text-color);
        font-weight: 300;
    }

    .auth-top-info p b {
        font-weight: 600;
    }

    .auth-wrapper .subtitle {
    margin: 16px 0;
    font-size: 16px;
    color: #667c99;
    font-weight: 500;
    text-align: center;
    }

    .main-title .main {
    display: inline-block;
    width: 100%;
    margin: 16px 0;
    color: #031C3C;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    }

    .auth-wrapper .short-desc {
    margin: 0 0 16px 0;
    color: #031C3C;
    font-size: 14px;
    line-height: 21px;
    }

    .auth-wrapper .main-title {
    margin-bottom: 32px;
    text-align: center;
    }

.form-inline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

    .form-label {
        top: 18px;
        padding: 0 8px;
        font-weight: 400;
        position: absolute;
        left: 8px;
        background: #fff;
        overflow: hidden;
        text-overflow: ellipsis;
        transform-origin: bottom left;
        transition: transform 150ms cubic-bezier(0.4,0,0.2,1),opacity 150ms cubic-bezier(0.4,0,0.2,1);
        white-space: nowrap;
        width: auto;
        color: #667C99;
        font-size: 16px;
        margin-bottom: 0;
        line-height: 18px;
        cursor: text;
        pointer-events: none;
        max-width: calc(100% - 10px);
    }
    
    .form-control:focus + .form-label, .form-control:not(:placeholder-shown) + .form-label  {
        transform: scale(.75) translateY(-40px);
    }

    .form-control:focus + .form-label {
        max-width: unset;
    }

   
    .form-group-columns {
      position: relative;
    }
    
    .info-section {
      position: absolute;
      right: 0;
      top: -18px;
      display: flex;
      justify-content: flex-end;
      margin-bottom: 4px;
    }
    
    .info-section .info-section-btn {
      background: transparent;
      padding: 0;
      border: 0;
      margin-right: -2px;
      width: 14px;
      height: 14px;
      border-radius: 100%;
      font-size: 10px;
      color: #fff;
      cursor: pointer;
      z-index: 1;
      transition: all .15s ease-in;
    }

    .info-section-btn svg {
        width: 100%;
        height: 100%;
    }

    .info-section-btn svg path {
        fill: #808080d1;
    }

    .info-section-btn:hover svg path {
        fill: var(--primary-color);
    }

    .info-section .info-section-btn:focus {
        outline: none;
    }

     .info-section .info-section-btn:focus {
       outline: none;
     }
    
     .auth-wrapper .info-section .link {
       font-size: 12px;
     }
     
     .info-section-text {
        position: absolute;
        left: calc(100% - 12px);
        bottom: 18px;
        padding: 16px;
        border-radius: 5px;
        box-shadow: 0 6px 12px 0 rgba(0, 0, 0, .2);
        border: 1px solid whitesmoke;
        z-index: 99;
        background: #fff;
        width: 300px;
        font-size: 12px;
        line-height: 18px;
        transition: all .15s ease-in;
        opacity: 0;
        visibility: hidden;
     }
     
     .show-info-text.info-section-text {
        opacity: 1;
        visibility: visible;
     } 
    .auth-wrapper .form-control {
        font-family: "Inter";
    }

    .form-control.has-empty-label + .form-label {
        transform: none;
    }

    .date-form-control .form-label {
            width: 60%;
    }

    .date-form-control .date-icon {
      position: absolute;
      top: 18px;
      right: 12px;
      width: 18px;
      height: 18px;
      background: #fff;
      pointer-events: none;
      border: 0;
      padding: 0;
      background-image: url(https://tojnhu4mvp.gjirafa.net/Templates/calendar-icon.svg);
      background-repeat: no-repeat;
      background-position: center;
      background-size: cover;
    }

    .select-form-control {
      padding-right: 36px;
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      background-image: url(https://tojnhu4mvp.gjirafa.net/Templates/arrow-bottom.svg);
      background-repeat: no-repeat;
      background-position: calc(100% - 14px) center;
    }

    .form-group-inline {
      display: flex;
      column-gap: 14px;
      flex-wrap: wrap;
      position: relative;
    }

     .form-group-inline-item {
       flex: 1;
     }

    .form-control:focus + .form-label {
        color: var(--primary-color);
    }

    .form-control.input-validation-error + .form-label {
        color: #e34850;
    }

    .auth-wrapper .form-group-inline:not(last-child) {
      margin-bottom: 24px;
    }
    
    .auth-wrapper .form-group-inline .form-item:not(:last-child):not(.last-item) {
      margin-bottom: 0;
    }
     
    .form-group-inline .error-message {
       flex-basis: 100%;
    }

    .auth-wrapper .form-item {
    position: relative;
    }

    .auth-wrapper .form-control {
    height: 52px;
    padding: 0 14px;
    border: 1px solid #e0e5eb;
    border-radius: 4px;
    font-size: 14px;
    color: #031C3C;
    }

    .auth-wrapper input[id="password"] {
    padding-right: 38px;
    }

    .auth-wrapper .form-control:hover {
    border-color: #667c9970;
    }

    .auth-wrapper .form-control:focus, .auth-wrapper .form-control:active, .auth-wrapper .form-control.active-input {
    box-shadow: 0 0 0 1px var(--primary-color);
    border-color: var(--primary-color);
    }

    .auth-wrapper .form-control.input-validation-error {
    box-shadow: 0 0 0 1px #e34850;
    border-color: #e34850;
    }

    .auth-wrapper .form-control::placeholder {
    color: #667c99;
    }

    .auth-wrapper .form-item:not(:last-child):not(.last-item) {
    margin-bottom: 24px;
    }
    
    .auth-wrapper .login-remember {
    margin-top: -10px;
    }

.error-message {
    display: block;
    color: #e34850;
    padding-left: 20px;
    font-size: 14px;
    padding-left: 18px;
    background-image: url("../../../images/error-circle.svg");
    background-repeat: no-repeat;
    background-position: left 1px;
    background-size: 18px
    }

    /*.error-message > span, .error-message {
    padding-left: 18px;
    background-image: url("../../../images/error-circle.svg");
    background-repeat: no-repeat;
    background-position: left 1px;
    }
    */
    .show-pass svg {
    width: 18px;
    }

    .auth-wrapper .show-pass {
    width: 24px;
    height: 24px;
    padding: 0;
    top: 15px;
    right: 8px;
    }

    .auth-wrapper .show-pass:hover,
    .auth-wrapper .show-pass.active {
    background-color: transparent;
    }

    .auth-wrapper .show-pass:hover path {
    fill: var(--primary-color);
    }

    .auth-wrapper .show-pass .pw-shown {
    display: none;
    }

    .auth-wrapper .show-pass.active .pw-hidden {
    display: none;
    }

    .auth-wrapper .show-pass.active .pw-shown {
    display: block;
    }

    .auth-wrapper .link {
        font-size: 14px;
        color: var(--primary-color);
        border: 0;
        padding: 0;
        background-color: transparent;
    }

    .auth-wrapper .link:focus {
        outline:none;
    }

     .auth-wrapper .link:hover {
      text-decoration: underline;
     }

    .terms-and-conditions .link.small {
    display: inline-block;
    font-size: 12px;
    }

    .form-button .btn-primary {
    width: 100%;
    }

    .auth-inner .btn {
    font-size: 14px;
    font-weight: 400;
    padding: 10px 12px;
    margin: 0;
    }

    .auth-inner .btn:last-child:not(:first-child) {
    margin-left: 16px;
    }

    .auth-wrapper .form-button {
    display: inline-block;
    width: 100%;
    margin-top: 32px;
    }

    .form-button .btn-primary {
    background-color: var(--primary-color) !important;
    color: var(--button-text-color);
    border-color: var(--primary-color) !important;
    transition: all .15s ease-in;
    }
    
    .form-button .btn-primary:active {
        transform: scale(.98);
    }
.form-button .btn-primary:hover {
    background-color:var(--primary-color);
    border-color: var(--primary-color);
    opacity: 0.9;
    }

    .auth-wrapper .btn:focus, .auth-wrapper .btn.focus {
    outline: none;
    box-shadow: none !important;
    }

    .auth-wrapper .plain-text {
    color: #667c99;
    font-size: 14px;
    text-align: center;
    }

    .items-baseline {
     align-items: baseline;
    }

    .auth-wrapper .plain-text span {
    margin-right: 8px;
    }

    .whitespace-nowrap {
         white-space: nowrap;
    }

   .auth-wrapper .plain-text span.no-margin {
     margin-right: 0;
    }

    .text-right {
       text-align: right;
    }

    .terms-and-conditions {
    display: flex;
    justify-content: space-between;
    padding: 0 38px;
    margin: 24px auto 0 auto;
    font-size: 12px;
    color: var(--copyright-text-color);
    text-align: center;
    line-height: 18px;
    }

    .terms-and-conditions .link {
    margin-left: 16px;
    }

    .external-links .link-label {
    font-size: 14px;
    font-weight: 500;
    margin-left: 16px;
    color: #052D61;
    }


    .external-links.block .list-inline-item {
        width: 100%;
        display: block;
        margin-right: 0;
    }


    .external-links.block .tooltip-text {
    display: none;
    }

    .auth-wrapper .external-links {
         padding: 0;
        text-align: center;
        display: inline-block;
        flex-direction: column;
        align-items: center;
    }

    .auth-wrapper .external-links.block a {
    width: 100%;
    text-decoration: none;
    }

    .external-links.block .list-inline-item:not(:last-child) {
    margin-bottom: 12px;
    }
      
    .auth-wrapper .external-links.block {
    gap: 12px;
    }  

    .external-links .list-inline-item {
    margin: 0;
    }

    .auth-wrapper .external-links a {
    display: flex;
    align-items: center;
    border-radius: 4px;
    padding: 0;
    width: 40px;
    min-height: 40px;
    transition: all 0.15s ease-in;
    padding: 0 10px;
    border: 1px solid #d3d3d37a;
    }

    .auth-wrapper .external-links a:not(:last-child) {
    margin-right: 6px;
    }

    .auth-wrapper .external-links a:hover,  .auth-wrapper .external-links a:focus,  .auth-wrapper .external-links a:active {
    background-color: whitesmoke;
    outline: none;
    }

    .auth-wrapper .external-links svg {
    width: 20px;
    height: 20px;
    }

    .or-line {
    border-top: 1px solid #E0E5EB;
    padding: 9px 0;
    position: relative;
    margin: 32px 0 30px 0
    }

    .or-line span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -15px;
    padding: 4px 12px;
    background-color: #fff;
    color: #A3B0C2;
    font-size: 14px;
    }

    .pw-check-container {
    margin-top: 32px;
    display: none;
    }

    .pw-check-container.active {
    display: block;
    }

    .pw-check-container .pw-check-item {
    position: relative;
    padding-left: 24px;
    color: #667c99;
    font-size: 14px;
    }

    .auth-inner .valid-password {
    background-image: url("../../../images/check-icon-green.svg");
    background-repeat: no-repeat;
    background-position: calc(100% - 34px) center;
    padding-right: 58px;
    }

    .pw-check-container .pw-check-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    display: inline-block;
    background-image: url("../../../images/check-icon-gray.svg");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-color 0.15s ease-in;
    }

    .pw-check-container .pw-check-item:not(:last-child) {
    margin-bottom: 8px;
    }

    .pw-check-container .pw-check-item.checked::before {
    background-image: url("../../../images/check-icon-green.svg");
    }

    .pw-check-container .pw-check-item.error::before {
    background-image: url("../../../images/close-icon-red.svg");
    }

    .pw-check-container .pw-check-item.checked {
    color: #36B37E;
    }

    .pw-check-container .pw-check-item.error {
    color: #E34850;
    }


    .pw-check-container .title {
    color: #667c99;
    font-weight: 500;
    font-size: 14px;
    }

    /* Tooltips */

    .main-tooltip {
    position: relative;
    }

    .main-tooltip .tooltip-text {
    width: 130px;
    z-index: 1;
    left: 50%;
    bottom: calc(100% + 16px);
    transform: translateX(-50%) translate3d(0, 10px, 0);
    transition: all .15s ease-in;
    }

    .main-tooltip .tooltip-text, .info-tooltip {
    position: absolute;
    background: #4B4B4B;
    border-radius: 4px;
    padding: 8px;
    line-height: 18px;
    font-size: 11px;
    font-weight: 400;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    z-index: 11;
    }

    .main-tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translate3d(0, 0, 0);
    }

    .main-tooltip .tooltip-text::before {
    bottom: -4px;
    left: 50%;
    margin-left: -4px;
    }

    .main-tooltip .tooltip-text::before, .info-tooltip::before {
    content: "";
    display: inline-block;
    position: absolute;
    transform: rotate(180deg);
    width: 8px;
    height: 4px;
    background-image: url("../../../images/arrow.png");
    background-size: 8px;
    background-repeat: no-repeat;
    }

    .info-tooltip {
    position: absolute;
    left: 0;
    top: -38px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform: translate3d(0, 20px, 0);
    }

    .info-tooltip::before {
    top: -4px;
    left: 12px;
    }

    .info-tooltip.active {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    }

    .info-tooltip.bottom {
    top: 60px;
    }

    .info-tooltip.bottom::before {
    bottom: -4px;
    transform: none;
    }

    .logo-main {
    max-width: 138px;
    max-height: 50px;
    }

    .tfa-methods {
    padding-left: 0;
    margin: 0;
    }

    .tfa-method-item {
    position: relative;
    display: inline-block;
    padding-left: 32px;
    padding-right: 14px;
    color: #031C3C;
    text-decoration: none;
    background-size: 24px;
    background-repeat: no-repeat;
    background-position: left 24px;
    transition: all .15s ease-in;
    }

    .tfa-method-item::after {
    content: "";
    background-image: url("../../../images/arrow-right.png");
    background-size: 18px;
    width: 18px;
    height: 18px;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all .15s ease-in;
    }

    .tfa-method-item.text-message {
    background-image: url("../../../images/chat-icon.png");
    }

    .tfa-method-item.email {
    background-image: url("../../../images/message-icon.png");
    }

    .tfa-method-item.auth-app {
    background-image: url("../../../images/auth-icon.png");
    }

    .tfa-method-item:hover {
    text-decoration: none;
    color: #667c99;
    }

    .tfa-method-item:hover::after {
    right: -4px;
    }

    .tfa-method-item strong {
    font-weight: 500;
    }

    .tfa-methods li {
    list-style: none;
    }

    .tfa-method-name {
    padding: 24px 0;
    }

    .tfa-methods li:not(:last-child) .tfa-method-name {
    border-bottom: 1px solid #E0E5EB;
    }

    .tfa-methods li:last-child .tfa-method-name {
    padding-bottom: 0
    }

    .tfa-methods li:first-child .tfa-method-name {
    padding-top: 0
    }

    .tfa-methods li:first-child .tfa-method-item {
    background-position: left 1px;
    }

    .has-spinner {
    min-width: 80px;
    }

    .has-spinner.active {
    opacity: 0.6;
    pointer-events: none;
    }

    .spinner-icon, .has-spinner.active .btn-text {
    display: none;
    }

    .has-spinner.active .spinner-icon {
    display: inline-block;
    }

    .spinner-icon {
    width: 18px;
    }



    /* Modal */

    .modal-wrapper {
    background-color: rgba(102, 124, 153, 0.4);
    }

    .modal-wrapper .modal-content {
    box-shadow: 0px 2px 16px rgb(0 0 0 / 12%);
    border-radius: 8px;
    border: 0;
    }

    .modal-wrapper .btn-secondary {
    background-color: transparent;
    border: border: 1px solid #EAEAEA;
    border: 1px solid #EAEAEA;
    color: #2C2C2C;
    }

    .modal-wrapper .modal-footer, .modal-wrapper .modal-header {
    border-color: #E0E5EB;
    padding: 16px;
    }

    .modal-wrapper .modal-body {
    font-size: 14px;
    padding: 16px;
    }

    .modal-wrapper .close {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px;
    width: 30px;
    height: 30px;
    float: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    }

    .modal-wrapper .close span {
    font-weight: 400;
    line-height: 15px;
    }

    .red-asterix {
        color: red;
        font-weight: bold;
    }


    /* Checkbox */

    .checkbox-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    }

    .checkbox-wrapper input {
    opacity: 0;
    width: 100%;
    position: absolute;
    left: 0;
    height: 100%;
    cursor: pointer;
    z-index: 1;
    margin: 0;
    }

    .checkbox-wrapper label {
    margin-bottom: 0;
    font-size: 14px;
    color: #667c99;
    padding-left: 24px;
    transition: all 0.15s ease-in;
    }

    .checkbox-wrapper label::before,
    .checkbox-wrapper label::after {
    position: absolute;
    left: 0;
    top: 3px;
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    transition: all 0.15s ease-in;
    }

    .checkbox-wrapper label::before {
    margin-right: 8px;
    border-radius: 4px;
    border: 1.2px solid #667c99;
    }

    .checkbox-wrapper label::after {
    background-image: url("../../../images/checkmark.png");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(0);
    }

    .checkbox-wrapper input:hover + label {
    color: #052D61;
    }

.checkbox-wrapper input:checked ~ label::before {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    }


    .checkbox-wrapper input.error ~ label::before {
    border-color:#e34850;
    }

    .checkbox-wrapper input:hover ~ label::before {
    border-color: var(--primary-color);
    }

    .checkbox-wrapper input:checked ~ label::after {
    transform: scale(1);
    }

    .checkbox-wrapper .link {
    position: relative;
    z-index: 9;
    }

    .hidden {
    display: none !important;
    }

    /* Alert Style */

    .alert-wrapper {
    display: none;
    align-items: center;
    margin-bottom: 24px;
    border: 1px solid #F6F7F9;
    box-shadow: 0px 4px 48px -12px rgb(0 0 0 / 24%);
    border-radius: 8px;
    padding: 12px 12px 12px 34px;
    color: #667C99;
    font-size: 14px;
    line-height: 18px;
    background-size: 14px;
    background-position: 12px 15px;
    background-repeat: no-repeat;
    background-color: #fff;
    line-height: 22px;
    }

    .alert-wrapper li {
    color: #667C99;
    }

    .alert-wrapper.active, .alert-wrapper.field-validation-error {
    transform: translateX(0px);
    display: block;
    }

    .alert-wrapper p {
    margin-bottom: 6px;
    }

    .alert-wrapper p:last-child {
    margin-bottom: 0;
    }

    .alert-wrapper.success {
    background-image: url("../../../images/success-icon.svg");
    }

    .alert-wrapper.error {
    background-image: url("../../../images/times-error.svg");
    }

    .alert-wrapper.info {
    background-image: url("../../../images/info-circle.svg");
    }


    .dropdown-wrapper {
    position: relative;
    }

    .value-text {
    display: flex;
    align-items: center;
    color:  var(--copyright-text-color);
    font-size: 12px;
    min-height: 18px;
    }

    .display-value {
    display: flex;
    align-items: center;
    cursor: pointer;
    }

    .display-value .arrow {
    margin-left: 8px;
    transition: all 0.15s ease-in;
    width: 10px;
    height: 10px;
    }

 

    .display-value:hover .value-text {
    color: var(--primary-color);
    }
    .display-value:hover .arrow path {
    fill: var(--primary-color);
    }

    .opened .arrow {
    transform: rotate(180deg);
    }

    .select-container {
    width: 115px;
    max-height: 138px;
    overflow: auto;
    background-color: #fff;
    z-index: 9;
    padding: 0px;
    position: absolute;
    bottom: 38px;
    left: 0;
    background-color: #fff;
    transform: translateY(13px);
    display: none;
    margin: 0px;
    height: fit-content;
    list-style-type: none;
    border: 1px solid #e0e5eb;
    box-sizing: border-box;
    box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    transition: transform 0.15s ease-in;
    }

    .select-container:focus {
    outline: none;
    }

    .opened .select-container {
    display: block;
    transform: translateY(0);
    }

    .select-option {
    display: flex;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 12px;
    text-align: left;
    word-break: break-all;
    font-family: sans-serif;
    align-items: center;
    color:  var(--copyright-text-color);
    transition: all 0.15s ease-in;
    }

    .select-option .check-icon {
    opacity: 0;
    transition: all 0.15s ease-in;
    }

    .select-option.selected {
    color: var(--primary-color);
    }

    .select-option.selected svg path {
    fill: var(--primary-color);
    }
    .select-option.selected .check-icon {
    opacity: 1;
    }

    .select-option:hover {
    background-color: #eee;
    }

    .select-option svg {
    width: 12px;
    }

    .terms-and-conditions .terms-link {
    color:  var(--copyright-text-color);
    font-size: 12px;
    }

    .terms-and-conditions .terms-link:last-child {
    margin-left: 8px;
    }


    /* Animations */
    @-webkit-keyframes fadeIn {
    0% {
    opacity: 0;
    }

    100% {
    opacity: 1;
    }
    }

    @-moz-keyframes fadeIn {
    0% {
    opacity: 0;
    }

    100% {
    opacity: 1;
    }
    }

    @-o-keyframes fadeIn {
    0% {
    opacity: 0;
    }

    100% {
    opacity: 1;
    }
    }

    @keyframes fadeIn {
    0% {
    opacity: 0;
    }

    100% {
    opacity: 1;
    }
    }

    /* Top Bottom */
    @-webkit-keyframes topBottom {
    0% {
    transform: translateY(-20px);
    opacity: 0;
    }

    100% {
    transform: translateY(0);
    }
    }

    @-moz-keyframes topBottom {
    0% {
    transform: translateY(-20px);
    opacity: 0;
    }

    100% {
    transform: translateY(0);
    }
    }

    @-o-keyframes topBottom {
    0% {
    transform: translateY(-20px);
    opacity: 0;
    }

    100% {
    transform: translateY(0);
    }
    }

    @keyframes topBottom {
    0% {
    transform: translateY(-20px);
    opacity: 0;
    }

    100% {
    transform: translateY(0);
    }
    }

    .fade-in {
    -webkit-animation: fadeIn .4s;
    -moz-animation: fadeIn .4s;
    -o-animation: fadeIn .4s;
    animation: fadeIn .4s;
    }

    .top-bottom {
    -webkit-animation: topBottom .5s;
    -moz-animation: topBottom .5s;
    -o-animation: topBottom .5s;
    animation: topBottom .5s;
    }



    /* Responsive Layout Style */

    @media screen and (max-width: 1020px) {
        .info-section-text {
            right: 0;
            left: unset;
        }
    }

    @media screen and (max-width: 768px) {
    .auth-main-container {
    padding: 40px 24px;
      min-height: auto;
    }

    .auth-inner {
    padding: 0;
    box-shadow: none;
    border: 0;
    overflow: unset;
    }

    .terms-and-conditions {
    padding: 0;
    margin: 34px auto 0 auto;
    justify-content: space-between;
    }

    .terms-and-conditions span:not(.value-text) {
    margin-top: 8px;
    }

    .dropdown-wrapper {
    display:inline-block;
    }

    .dropdown-wrapper .value-text {
    padding-left: 0;
    }

    }
