@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');


* {
    margin: 0;
    padding: 0;
}

*:focus {
    outline: none !important;
    box-shadow: none !important;
}

/*Custom common styles*/

html {
    position: relative;
    height: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f2f3f5;
    color: #273443;
    height: 100%;
    min-height: 100%;
}

a:hover,
a:focus,
button:focus {
    outline: 0 none;
}

a {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

a:hover,
a:focus {
    text-decoration: none;
}


ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

/** Singup form **/

.user-form {
    height: 100%;
}

.user-form-container {
    height: 100%;
    width: 100%;
    /*    position: fixed;*/
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
}

.d-flex {
    display: flex;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-row > .col,
.form-row > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
}

.u-left {
    background: #003057;
    max-width: 440px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    justify-content: center;
}

.f-logo {
    margin: 20px 0 0;
}

.f-logo img {
    width: 100%;
    height: 20.06%;
    max-width: 200px;
}

.u-left h2 {
    font-size: 20px;
    margin: 0;
    font-weight: bold;
    flex-grow: 1;
    margin-bottom: 24px;
}

.u-left p {
    font-size: 12px;
    justify-content: center;
    margin-bottom: 20px;
}

.u-content {
    text-align: center;
    max-width: 330px;
    width: 100%;
}

.u-right {
    background: #fff;
    flex: 1 1 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    overflow-y: scroll;
}

.f-form {
    width: 100%;
    text-align: center;
    padding: 0 20px;
}

form {
    margin: 30px auto 10px;
    max-width: 400px;
    width: 100%;
}

.f-form h1 {
    font-weight: 900;
    font-size: 40px;
    color: #273443;
    margin-bottom: 10px;
}

.f-form h1,
.f-form p {
    text-align: center;
}

.f-form p {
    font-weight: bold;
    font-size: 12px;
    color: #273443;
}

.f-form p.f-act {
    color: #8492A5;
    font-size: 14px;
    text-align: center;
    margin-top: 40px;
}

.terms-content p.f-act {
    margin-top: 0px;
}

.f-form p.f-act a {
    color: #0097FF;
    font-weight: 800;
    margin-left: 12px;
}

.forgot {
    margin-left: auto;
}

.form-control {
    color: #3B4857;
    font-weight: 600;
    font-size: 14px;
    height: 50px;
    box-shadow: none;
}

.check-txt {
    color: #8492A5;
    font-size: 14px;
    font-weight: 600;
    margin-top: -6px;
}

.check-txt a {
    color: #8492A5;
}

/** custom checkbox styling */

.custom-control-label {
    padding-top: 2px;
}

.custom-checkbox .custom-control-label::before {
    border-radius: 2px;
    border: 1px solid #E0E6ED;
    background: none;

}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #00B184;
    border: 0;
}

.btn {
    border-radius: 100px;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    max-width: 210px;
    width: 100%;
    min-height: 40px;
    transition: all .3s ease;
}

.submit-btn {
    margin-top: 35px;
}

.btn-primary {
    background: #0097ff;
    border-radius: 3px;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #fff;
    background-color: #D3DCE6;
    border-color: #D3DCE6;
}


.toggle-password {
    position: absolute;
    right: 10px;
    top: 18px;
}

#password {
    padding-right: 34px;
}

.back-btn {
    margin-top: 20px;
}

a.back-link {
    color: #4FBBFE;
    font-weight: normal;
    font-size: 16px;
}

label.error {
    position: relative;
    color: #E02A1E;
    top: 0;
    left: 0;
    width: 100%;
    text-align: left;
    transform: none !important;
    opacity: 1 !important;
    font-size: 14px;
    margin-bottom: 0;
}

.has-error input {
    border-color: #E02A1E !important;
}

.has-error label {
    color: #E02A1E;
}

.has-success label.error {
    display: none !important;
}

form.form-large {
    max-width: 646px;
}

.sign-up-form {
    margin-top: 15px;
}

p.form-title {
    margin-bottom: 30px;
}

p.term-condition {
    margin-top: 20px;
    font-size: 14px;
    color: #3B4857;
}

p.term-condition a {
    color: #3B4857;
    text-decoration: underline;
}


.has-float-label {
    position: relative;
    text-align: left;
}

.float-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 200ms;
    font-size: 14px;
    left: 20px;
    margin: 0;
    line-height: normal;
    color: #E0E6ED;
    font-weight: 600;
}

.float-label.phone-no {
    left: 80px;
}

.form-control:focus + .float-label,
.form-control:valid + .float-label,
.has-error .float-label,
.has-success .float-label,
.bootstrap-select + .float-label {
    font-size: 12px;
    transform: translate3d(0, -100%, 0);
    opacity: 1;
    top: 7px;
    background: #fff;
    color: #8492A5;
    padding-right: 10px;
    padding-left: 3px;
}

.has-error .bootstrap-select {
    border-color: #E02A1E;
}

.has-error .float-label {
    color: #E02A1E;
}

/* Change the white to any color ;) */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

a[href="#previous"] {
    color: #0097ff !important;
    border: 1px solid #0097ff !important;
    background: #fff !important;
}

textarea.form-control {
    height: 109px;
    resize: none;
}

.has-success .form-control {
    border-color: #ccc;
    box-shadow: none;
}

.toggletxt {
    display: none;
}

.bootstrap-select {
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100% !important;
    height: 50px;
    line-height: 50px;
}

.bootstrap-select .dropdown-toggle {
    max-width: 100%;
    background: none !important;
    box-shadow: none;
}

.bootstrap-select .dropdown-menu {
    margin: 0;
    font-size: 14px;
    border: 1px solid #ccc;
    border: 0;
    box-shadow: 0px 6px 25px rgba(59, 72, 87, 0.15);
    border-radius: 5px;
    font-weight: 600;
    top: 100%;
    margin-top: 2px;
    padding: 0;
        min-width: 100%!important;
    max-height: 300px;
}

.bootstrap-select .dropdown-menu.inner {
    list-style: none !important;
}

.dropdown-menu > li > a {
    padding: 14px 20px;
    font-weight: 600;
    color: #3B4857;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    background-color: #F3faFf;
    outline: 0;
    color: #0097ff;
    font-weight: bold;
}

.bootstrap-select > select.mobile-device:focus + .dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus,
.btn-default:hover {
    background: transparent;
    outline: none !important;
}

.bootstrap-select .dropdown-toggle .caret {
    margin-top: -7px;
    border: solid #D3DCE6;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
}

.form-row-uploader {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.upl-left {
    max-width: 150px;
    width: 100%;
}

.form-row-uploader p {
    font-size: 10px;
    color: #8492A5;
    font-weight: normal;
    text-align: right;
}

.uploader-sec {
    width: 175px;
    height: 175px;
    background: #fff;
    border: 2px dashed #8492A5;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0 20px;
}

.uploader-sec span {
    font-size: 20px;
    color: #8492A5;
}

.uploader-sec p {
    font-size: 12px;
    color: #273443;
    font-weight: bold;

}

.instruction {
    max-width: 210px;
    width: 100%;
}

.form-row-uploader .instruction p {
    text-align: left;
}

.wizard > .actions > ul > li a, .wizard > .actions > ul > li a:hover {
    font-weight: 400;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-color: #0097ff;
    border-radius: 3px 3px 3px 3px;
}
