:root{
--primary-color: #07706e;
--primary-color-degree1: #007070;
--secondary-color: #17464c;
}
/*-------------------------------
            LOGIN STYLES
-------------------------------*/
.login-body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
.login-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.login-left-side {
    position: relative;
    flex: 1 1 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    height: 100%;
    padding: 8% 100px 0 50px;
    background: #2a6a72 url('../images/shape_gradient_2x.png') no-repeat;
    background-size: 100% 100%;
}
.login-wave-illustration {
    width: 140px;
    position: absolute;
    right: -30px;
    top: 0;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    @media only screen and (max-width: 767px) {
        display: none;
    }
}
.login-left-logo, .login-left-illustration {
    position: relative;
    z-index: 5;
}
.login-left-logo {
    max-width: 300px;
    width: 30%;
    margin: 0 auto 50px;
    display: block;
}
.login-left-illustration {
    width: auto;
    max-width: 100%;
    max-height: 680px;
}
/* .login-left-side h2 {
    font-size: 28px;
    color: #fff;
}
.login-left-side h2 span {
    font-size: 1.5em;
    font-weight: bold;
    margin-top: 15px;
    display: block;
} */
.login-right-side {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1 1 40%;
    height: 100%;
    background: #fff;
    border-left: 1px solid #f5f5f5;
}
.login-right-side-content {
    max-width: 600px;
}
.login-right-side-content h3 {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 50px;
    text-align: center;
    max-width: 400px;
    margin-bottom: 30px;
}
.login-right-side-content h4 {
    font-weight: bold;
    font-size: 24px;
    text-align: center;
    max-width: 400px;
    color: #333;
}
.sign-title {
    font-size: 24px;
    color: #fff;
    position: absolute;
    top: -60px;
    left: 0;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
}
.form-signin {
    color: #222;
}
.form-signin label {
    font-weight: 600;
}
.form-signin .form-control {
    position: relative;
    font-size: 16px;
    height: auto;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.form-signin .form-control:focus {
    z-index: 2;
}
.form-signin input.form-control {
    margin-bottom: 15px;
    border-radius: 0;
    border: 1px solid #eaeaec;
    background: #eaeaec;
    box-shadow: none;
    font-size: 14px;
    height: 50px;
    font-weight: 600;
    padding: 13px 20px;
    border-left: 4px solid var(--primary-color);
}
.form-signin label {
    font-size: 14px;
}
.form-signin .btn-login {
    background: var(--primary-color);
    color: #fff;
    font-weight: 600;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    height: 50px;
    max-width: 100%;
    border-radius: 0;
    margin: 30 auto 0;
    display: inline-block;
    font-size: 18px;
}
.form-signin .btn-login:hover {
    background: #007070;
}
.form-signin p {
    text-align: left;
    color: #b6b6b6;
    font-size: 16px;
    font-weight: normal;
}
.form-signin a, .form-signin a:hover {
    color: var(--primary-color);
}
.form-signin a:hover {
    text-decoration: underline;
}
.login-wrap {
    padding: 20px;
    position: relative;
}
.registration {
    color: #c7c7c7;
    text-align: center;
    margin-top: 15px;
}
.checkbox-group input[type="checkbox"]+label,
.checkbox-group input[type="radio"]+label {
    position: relative;
}
.checkbox-group input {
    visibility: hidden;
    display: none;
    opacity: 0;
    z-index: -1;
}
.checkbox-group input+label:before {
    content: "";
    width: 15px;
    height: 15px;
    display: inline-block;
    border: 1px solid var(--primary-color);
    vertical-align: -2px;
    margin-right: 8px;
    font: normal normal normal 11px/1.2 FontAwesome;
    text-align: center;
    overflow: hidden;
}
.checkbox-group input:checked+label:before {
    content: "\f00c";
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.subs-link {
    margin-top: 15px;
    color: #7a7676;
    font-size: 14px;
}
@media only screen and (max-width: 767px) {
    .login-body {
        height: auto;
        overflow: auto;
    }
    .login-wrapper {
        flex-direction: column;
        height: auto;
    }
    .login-left-side {
        min-height: 520px;
        flex: auto;
        padding-right: 50px;
    }
    .login-right-side {
        height: auto;
        flex: auto;
        padding: 50px 20px;
    }
    .login-right-side-content h3 {
        font-size: 34px;
    }
}
.modal-title {
    font-size: 18px;
    color: #007070;
}
.form-cta-block {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.form-cta-block .btn {
    flex: 1 1 50%;
}
