<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;1,700&amp;family=Playfair+Display:wght@400;700&amp;display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
}

p {
    margin-top: 0;
}

a {
    color: #6D6D6D;
    text-decoration: none;
    transition: color .2s ease;
}

    a:hover {
        color: #2E949E;
        text-decoration: underline;
    }

input,
button,
select,
optgroup {
    font-family: inherit;
}

.login {
    --ff-alt: 'Playfair Display', serif;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    color: #6D6D6D;
    background: no-repeat center / cover;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 500;
    color: #262626;
    cursor: pointer;
    user-select: none;
    text-decoration: none;
    text-transform: capitalize;
    outline: 0;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

    .btn:hover,
    .btn:focus,
    .btn:active {
        outline: 0;
        text-decoration: none;
    }

.btn--primary {
    color: #fff;
    background-color: #2E949E;
    border-color: #2E949E;
}

.btn--secondary {
    color: #555;
    background-color: #F0F0F0;
    border-color: #F0F0F0;
}

.btn--primary:hover,
.btn--primary:focus {
    color: #fff;
    background-color: #262626;
    border-color: #262626;
}

.btn--back {
    position: fixed;
    top: 50px;
    left: 50px;
    z-index: 900;
    padding: 0;
}

    .btn--back .btn__img {
        flex-shrink: 0;
        width: 45px;
        height: 45px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        color: #fff;
        background-color: #53B7C7;
        border-radius: 50%;
        transition: color .2s ease, background-color .2s ease;
    }

        .btn--back .btn__img svg {
            width: 25px;
            height: auto;
        }

    .btn--back .btn__text {
        font-weight: 400;
        color: #959595;
    }

    .btn--back:hover .btn__img,
    .btn--back:focus .btn__img {
        color: #fff;
        background-color: #262626;
    }

@media (max-width: 767.98px) {
    .btn--back {
        top: 10px;
        left: 20px;
    }

        .btn--back .btn__img {
            width: 35px;
            height: 35px;
        }

        .btn--back .btn__text {
            display: none;
        }
}

/*.login__container {
  display: block;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .login__container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .login__container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .login__container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .login__container {
    max-width: 1140px;
  }
}

@media (min-width: 1600px) {
  .login__container {
    max-width: 1400px;
  }
}*/
.login {
    /*display: flex;
    justify-content: flex-end;*/
    position: relative;
    height: 100vh;
    background-color: black;
    background-size: 69%;
    background-position: left;
}

.login__row {
    position: absolute;
    right: 0;
    min-height: 100vh;
    height: 100%;
    width: 100%;
    max-width: 600px;
    background-color: #fff;
}

.login__col {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login_wrap_logo {
    height: 80px;
    margin-bottom: 30px;
    text-decoration: none;
    width: 100%;
    display: flex;
    ;
}

    .login_wrap_logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.login_wrapper {
    overflow: auto;
    padding: 20px 40px;
}
/*.login__col {
  flex-shrink: 0;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 576px) {
  .login__col {
    flex: 0 0 90%;
    max-width: 90%;
  }
}

@media (min-width: 768px) {
  .login__col {
    flex: 0 0 70%;
    max-width: 70%;
  }
}


@media (min-width: 1200px) {
  .login__col {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1600px) {
  .login__col {
    flex: 0 0 45%;
    max-width: 45%;
  }
}*/


.block {
    display: block;
    padding: 50px;
    text-align: center;
    background-color: #fff;
}

@media (max-width: 767.98px) {
    .block {
        padding: 20px;
    }
}

.block__logo {
    max-width: 100%;
    width: 200px;
    height: auto;
    margin-bottom: 40px;
}

@media (max-width: 767.98px) {
    .block__logo {
        width: 160px;
    }
}

.block__title {
    display: block;
    text-align: center;
    margin-bottom: 20px;
    font-family: var(--ff-alt);
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    color: #53B7C7;
}

@media (max-width: 991.98px) {
    .block__title {
        font-size: 36px;
    }
}

.form {
    margin-bottom: 10px;
    text-align: left;
}

.form__field {
    display: block;
    width: 100%;
    padding: 8px 12px;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    color: #262626;
    background-color: #fff;
    border: 1px solid #DDDDDD;
    border-radius: 0;
    outline: 0;
    transition: border-color .2s ease;
}

.form__field::placeholder {
    color: #6D6D6D;
}

.form__field:focus {
    border-color: #2E949E;
}

.form-group {
    position: relative;
}

.form--append .form__field {
    padding-right: 40px;
}

.form-group label {
    color: #696f75;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 7px;
}

.form-group .form-control {
    background-color: #f5f7fa;
    border: 1px solid #ced4da;
    padding: 3px 7px;
    font-size: 17px;
    min-height: 51px;
    border-radius: 4px;
    color: #495057;
}

.form-control:focus,
.btn--submit:focus,
.modal-buttons button:focus {
    box-shadow: none !important;
}

.form-group .form__icon {
    position: absolute;
    bottom: 18px;
    right: 12px;
    z-index: 5;
    width: 18px;
    height: 18px;
    font-size: 18px;
    line-height: 1;
}

.btn--submit {
    width: 100%;
    margin-top: 15px;
    margin-bottom: 30px;
    min-height: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 24px;
    background: transparent;
    border: 1px solid #59C4CE;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    color: #59C4CE;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .btn--submit:hover {
        /*background-color: rgba(89, 196, 206, 0.1);
  box-shadow: 0 0 8px #59C4CE;*/
        background-color: #59C4CE;
        color: #fff;
    }

.block__text {
    color: #6D6D6D;
    /*padding-bottom: 15px;*/
}

.forget_register_link .form_link {
    padding: 0px 10px;
    cursor: pointer;
}

.forget_register_link .form_link:first-child {
    border-right: 1px solid #6D6D6D;
}

.block__text:last-of-type {
    margin-bottom: 0;
}

.block__link {
    color: #262626;
    text-decoration: none;
    transition: color .2s ease, text-decoration .2s ease;
}

.block__link:hover,
.block__link:focus {
    color: #2E949E;
    text-decoration: underline;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-danger {
    color: #dc3545 !important;
}

.select2-container--default .select2-selection--single {
    height: 38px !important;
}

:focus-visible {
    outline: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 6px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    margin-top: 4px;
}

.select2-container {
    width: 100% !important;
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #ddd !important;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgb(13 110 253 / 65%);
}

.select2-container.select2-container--default {
    width: -webkit-fill-available !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #11163c transparent transparent transparent !important;
    border-width: 6px 5px 0 5px !important;
    margin-left: -10px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-color: transparent transparent #11163c transparent !important;
    border-width: 0 5px 6px 5px !important;
    margin-left: -10px !important;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #ddd !important;
    border-radius: 0 !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #2E949E !important;
    color: white;
}

.successpopup .close {
    padding: 2px 12px;
    font-size: 25px;
    line-height: 35px;
    border: 1px solid #2E949E;
}

.successpopup .close:hover {
    border: 1px solid #000;
}

.forget-modal .modal-content,
.register-modal .modal-content {
    border-radius: 13px 13px 10px 10px !important;
}

.forget-modal .modal-header,
.register-modal .modal-header {
    background-color: #53B7C7;
    padding: 8px;
    border-top-left-radius: 13px;
    border-top-right-radius: 13px;
    position: relative;
    justify-content: center;
}

.forget-modal .modal-header .modal-title,
.register-modal .modal-header .modal-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 0.9;
    margin: 0;
    color: #fff;
    text-align: center;
    text-transform: capitalize;
}

.forget-modal .modal-header button,
.register-modal .modal-header button {
    border: none;
    background-color: transparent;
    position: absolute;
    right: 15px;
}

.forget-form-group label {
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.modal-buttons button {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
}

.register-modal .modal-body {
    padding: 10px;
}

.register-modal .register_form {
    padding: 10px;
}
.login_form .form-group{
    margin-bottom: 15px;
}
.register_form .form-group {
    margin-bottom: 2px;
}

.register_form input,
.register_form .select2 {
    border-radius: 0;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid #53B7C7 !important;
    padding: 6px 46px;
    width: 100%;
}

.register_form .select2 .select2-selection {
    border: none !important;
    background-color: transparent !important;
    height: auto !important;
}

.select2-container--disabled,
.select2-container--disabled .select2-selection--single {
    opacity: 0.6;
}

.register_form .select2 .select2-selection .select2-selection__rendered {
    color: #495057;
}

.register_form .select2 .select2-selection .select2-selection__arrow b {
    border-color: #495057 transparent transparent transparent !important;
}

.register_form .select2 .select2-selection .select2-selection__arrow {
    top: auto !important;
    bottom: 6px;
}

.register_form .form-group {
    position: relative;
}

.register_form .form-group .form-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

.available_wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    margin-bottom:20px;
}

.available_wrap .android_card,
.available_wrap .apple_card {
    background-color: #53B7C7;
    display: flex;
    align-items: center;
    padding: 5px 10px;
    min-width: 182px;
    gap: 10px;
    color: #fff;
    line-height: normal;
    text-decoration: none;
    border-radius: 4px;
}

.available_wrap .android_card span,
.available_wrap .apple_card span {
    font-weight: 300;
}

.available_wrap .android_card p,
.available_wrap .apple_card p {
    margin: 0px;
    font-weight: 500;
}

.forget-modal .modal-buttons {
    display: flex;
    gap: 5px;
    justify-content: flex-end;
    width: 100%;
}

.select2-dropdown {
    z-index: 9999 !important;
}

@media (max-width:1199px) {
    .login {
        background-size: 50%;
    }
}

@media (max-width:1024px) {
    .login {
        background-size: 40%;
    }

    .btn--submit {
        min-height: 50px;
    }
}

@media (max-width:991px) {
    .register_form .select2 {
        margin-bottom: 0px;
    }

    .register_form .select2 .select2-selection .select2-selection__rendered {
        line-height: normal;
    }

    .login__row {
        max-width: 100%;
    }
}

@media (max-width:425px) {
    /*.login__row {
        padding: 0px 25px;
    }*/

    .register_form .form-group .form-icon {
        left: 5px;
    }

    .register_form .form-group .form-icon svg {
        width: 20px;
        height: 20px;
    }

    .register_form input,
    .register_form .select2 {
        padding: 6px 35px;
    }
    .register_form .select2 .select2-selection .select2-selection__rendered{
        padding:0px;    

    }
    .form-group .form-control {
        font-size: 15px;
        min-height: 41px;
    }

    .form-group .form__icon {
        bottom: 15px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 15px;
    }

    .block__title {
        margin-bottom: 20px;
        font-size: 30px;
    }

    .forget-modal .modal-header .modal-title, .register-modal .modal-header .modal-title {
        font-size: 20px;
    }

    .btn--submit {
        margin-top: 5px;
        min-height: 45px;
    }

    .login_wrap_logo {
        height: 60px;
        margin-bottom: 30px;
    }

    .login_wrapper {
        padding: 25px;
    }
}

@media (max-width: 400px) {
    .login_wrap_logo{
        margin-bottom: 10px;
    }
    .form{
        margin-bottom:0px;
    }
    .block__text{
    }
    .available_wrap .android_card, .available_wrap .apple_card {
        min-width: 130px;
        padding: 5px;
        gap:5px;
        font-size:13px;
    }
    .available_wrap .android_card svg, .available_wrap .apple_card svg{
        width:20px;
        height:20px;
    }
}
</pre></body></html>