@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&display=swap');
body {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 1.3856;
    background-color: #fff;
}

p {
    color: var(--bs-gray-600);
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Open Sans', sans-serif;
}

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

a:hover {
    text-decoration: none !important;
}

.content {
    padding: 7rem 0;
}

h2 {
    font-size: 20px;
}

.half, .half .container > .row {
    height: 100vh;
    text-align: center;
}

@media (max-width: 991.98px) {
    .half .bg {
        height: 500px;
    }
}

.half .contents, .half .bg {
    width: 50%;
}

@media (max-width: 1199.98px) {
    .half .contents, .half .bg {
        width: 100%;
    }
}

.half .contents .form-group, .half .bg .form-group {
    overflow: hidden;
    margin-bottom: 0;
    border: 1px solid grey;
    padding: 4px 14px;
    position: relative;
    border-radius: 7px;
}

.half .contents .form-group label, .half .bg .form-group label {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.half .contents .form-group input:focus + label, .half .bg .form-group input:focus + label {
    margin-top: -20px;
}

.half .contents .form-group.first, .half .bg .form-group.first {
    border-radius: 7px 7px 0px 0px;
    border-color:grey;
}

.half .contents .form-group.last, .half .bg .form-group.last {
    border-bottom: 1px solid grey;
    border-radius: 0px 0px 7px 7px;
    border-color:grey;
}

.half .contents .form-group label, .half .bg .form-group label {
    font-size: 1rem;
    display: block;
    margin-bottom: 0;
    color: grey;
    text-transform: lowercase;
}

.half .contents .form-group.field--not-empty label, .half .bg .form-group.field--not-empty label {
    margin-top: -20px;
}

.half .contents .form-control, .half .bg .form-control {
    border: none;
    font-size: 16px;
    border-radius: 0;
    font-weight: 400;
    padding: 0 2px;
    text-transform: lowercase;
    margin: 6px;
    font-family: inherit;
    background-color: transparent;
}

.half .contents .form-control:active, .half .contents .form-control:focus, .half .bg .form-control:active, .half .bg .form-control:focus {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.half .bg {
    background-size: cover;
    background-position: center;
}

.half a {
    color: #2196f3;
    text-decoration: underline;
}

.half .btn {
    height: 40px;
    padding-left: 30px;
    padding-right: 30px;
    width: 100%;
    font-size: inherit;
    font-family: inherit;
}

.half .forgot-pass {
    position: relative;
    font-size: 12px;
    padding-right: 10px;
}

.control {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    cursor: pointer;
    font-size: 12px;
}

.control .caption {
    position: relative;
    top: .2rem;
    color: #212529;
}

.control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.control__indicator {
    position: absolute;
    top: 4px;
    left: 5px;
    height: 15px;
    width: 15px;
    background: #aaa;
    border-radius: 4px;
}

.control--radio .control__indicator {
    border-radius: 50%;
}

.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
    background: #ccc;
}

.control input:checked ~ .control__indicator {
    background: var(--bs-appbrown);
}

.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
    background: var(--bs-appbrowndark);;
}

.control input:disabled ~ .control__indicator {
    background: #e6e6e6;
    opacity: 0.9;
    pointer-events: none;
}

.control__indicator:after {
    font-family: 'icomoon';
    content: '\e5ca';
    position: absolute;
    display: none;
    font-size: 16px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.control input:checked ~ .control__indicator:after {
    display: block;
    color: #fff;
}

.control--checkbox .control__indicator:after {
    top: 50%;
    left: 50%;
    margin-top: -1px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.control--checkbox input:disabled ~ .control__indicator:after {
    border-color: #7b7b7b;
}

.control--checkbox input:disabled:checked ~ .control__indicator {
    background-color: var(--bs-danger);
    opacity: .2;
}

.alert-warning, .alert-growl {
    font-size: 1rem;
}
.alert-growl {
    --bs-alert-color: var(--bs-brown);
    --bs-alert-bg: #fff3cd;
    --bs-alert-border-color: #ffecb5;
}
.copyright {
    font-size: 10px;
    font-weight: 400;
    color: var(--bs-gray-700);
    text-align: center;
}
form .row {
    margin: 0 0.2rem 0.5rem 0.2rem !important;
}
.help-block {
    display: block;
    margin-top: -4px;
    color: var(--bs-red);
    font-size: 1rem;
}
.close {
    float: right;
    font-size: 19.5px;
    font-weight: bold;
    line-height: 1;
    color: var(--bs-brown);
    text-shadow: 0 1px 0 #fff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}
button.close {
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
}
.alert .close {
    font-size: 13px;
    margin-left: 10px;
}
.alert-growl .close {
    font-size: 13px;
    color: #fff;
    margin-left: 10px;
}
.alert-dismissible .close, .alert-dismissible .close {
    top: -1px;
}
.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit;
}
.preaddon  {
    color: #000;
    padding: 0 0.5rem;
    font-size: inherit;
    margin: 7px;
}
.login_form_div .mt-sm a {
    margin-top: 0.7rem;
    font-size: 12px;
}
.ml-auto, .mx-auto {
    margin-left: auto !important;
}
.btn-primary {
    background-color: #003c43;
    border: 1px solid #003c43;
}
.btn-primary:hover {
    background-color: #028897;
    border: 1px solid #028897;
}
.login_form_div>.login-form .form-group .input-group input:-webkit-autofill ,.login_form_div>.login-form  .form-group .input-group input:-internal-autofill-selected {
    background-color: transparent;
}
input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    box-shadow: 0 0 0px 1000px transparent inset;
    -webkit-text-fill-color: #000;
    transition: background-color 5000s ease-in-out 0s;
}