body {
    background-image:
        linear-gradient(to bottom right, #095169, #46a5b9),
        url("/images/login/login-main-image.png");

    background-size: contain !important;
    background-position: left center !important;
    background-repeat: no-repeat;

    /* This blends the image with the gradient */
    background-blend-mode: lighten; /* or: multiply, screen, soft-light, darken, lighten */
}

.toggle-left {
    background: url('/images/login/login-form.png');
    background-size: cover;
}

.toggle-panel {
    align-items: start !important;
    padding: 50px;
    color: #fff;
}

.container-login {
    opacity: 1 !important;
    width: 950px !important;
}


.toggle-left h2 {
    font-size: 48px;
    color: #fff;
    font-weight: 500;
    font-family: 'Poppins';
    line-height: 1;
}

.toggle-left h3 {
    font-size: 48px;
    font-weight: 700 !important;
    color: #fff;
    font-family: 'Poppins';
}

.toggle-left p {
    font-size: 16px;
    color: #fff;
    font-family: 'Poppins';
}

.toggle-left .logo {
    margin-bottom: 0;
    width: 250px;
    height: auto;
    margin-bottom: 20px;
}


.form-box .input-box input[type="text"], .form-box .input-box input[type="password"], .form-box .input-box input[type="email"] {
    border: 1.5px solid #0b5c6b !important;
    padding: 15px 20px !important;
    background: #fff !important;
}

.bx-envelope:before, .bx-lock:before {
    color: #0b5c6b;
}


.form-group {
    position: relative;
    margin-bottom: 18px;
}

.form-group input {
    width: 100%;
    padding: 12px 45px 12px 12px;
    border: 2px solid #0f6c79;
    border-radius: 25px;
    font-size: 14px;
    outline: none;
    color: #0f6c79;
}

.form-group .icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #0f6c79;
    padding: 6px 8px;
    border-radius: 5px;
}

.form-group .icon i {
    color: white;
    font-size: 16px;
}

.options {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin: 8px 0 20px;
    color: #0f6c79;
}

.options input {
    accent-color: #0f6c79;
}

.options a {
    color: #0f6c79;
    text-decoration: none;
}

.btn-group {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn {
    flex: 1;
    padding: 10px 0;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

.follow {
    font-size: 14px;
    margin-bottom: 10px;
    color: #0f6c79;
}

.social-icons i {
    font-size: 26px;
    color: #0f6c79;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.2s ease;
}

.social-icons i:hover {
    transform: scale(1.1);
}

.btn-login {
    padding: 10px 28px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(to right, #0d5c70, #2fa7bb) !important;
    color: white;
    font-family: 'Poppins';
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

label, a, button {
    font-family: 'Poppins' !important;
}

.btn-register {
    background: white;
    border: 1px solid #0d5c70 !important;
    color: #0d5c70 !important;
    border-radius: 25px !important;
}

.button {
    padding: 10px;
    width: 50%;
}

.logo-mobile {
    display: none !important;
}
.logo-desktop {
    display: block !important;
}

.login-body button:hover {
    cursor: pointer !important;
}

@media (max-width: 767px) {
    body.login-body {
        padding: 40px 30px !important;
    }

    .login-body .form-box {
       height: auto !important;
    }

    .login-body .container {
        height: 440px !important
    }

    .login-body .toggle-box {
        display: none !important;    
    }

    .login-body .form-box.login {
        height: 100% !important;
        min-width: auto !important;
        padding: 0px 30px !important;
    }

    .login-body .toggle-panel {
        background: #fff !important;
        text-align: center !important;
        display: block !important;
        margin-top: 0px !important;
    }

    .login-body .toggle-panel h2, .login-body .toggle-panel h3 {
        color: #000 !important;
        font-size: 28px !important;
        display: none !important;
    }

    .toggle-left .logo {
        margin-bottom: 0 !important;
    }

    .logo-mobile {
        display: block !important;
        padding: 0 !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
        width: 230px !important;
    }
    .logo-desktop {
        display: none !important;
    }

}