body {
    background-color: #000;
}

h2 {
    margin-bottom: 1.5em;
    font-weight: bold;
}

.login-section {
    margin-top: -100px;
}

.login-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'SF_regular';
    padding: 0;
}

.login-container > div {
    width: 50%;
    padding-top: 7rem;
}

.login-form-section {
    padding: 2em 6rem;
}

.login-container-from label, .login-container p, .login-container p a {
    color: #DDDDDD;
    font-size: 16px;
    font-family: 'SF_regular';
    font-weight: 400;
}

.login-container p {
    margin-top: 10px;
}

.login-container-from .field-group {
    margin-bottom: 2em;
}

.login-container-from #user-password + p {
    text-align: right;
}

.login-container a {
    border-bottom: 1px solid;
    color: #fff;
    transition: all .5s ease;
}

.login-container a:hover {
    color: #aaa;
}

.login-container-from input {
    padding: 12px 14px;
    border: 1px solid #FFFFFF59;
    border-radius: 12px;
    transition: all .5s ease;
    color: #fff !important;
    background-color: transparent !important;
}

.login-container-from input:-internal-autofill-selected {
    color: #fff !important;
    background-color: transparent !important;
}

.login-container-from input:focus {
    border-color: #fff;
    outline: 0;
}

.login-container-from button {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 16px;
    width: 50%;
    text-align: center; 
    transition: all .5s ease;
}

.login-container-from button:hover {
    background: #ccc;
}

.pswd-visibility {
    position: absolute;
    top: 0;
    right: 0;
    color: #FFFFFFCC;
}

.pswd-visibility  span {
    margin-left: 5px;
}

.login-heading-section {
    padding-inline: 2rem;;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh;
    background-image: url(/assets/frontend/img/blogblackwhite.jfif);
    background-position: left;
    background-size: cover;
}

.login-heading-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000BA;
}

.login-heading-section h1, .login-heading-section > div {
    z-index: 1;
}

.login-heading-section h1 {
    font-size: 50px;
    font-weight: bold;
    line-height: 60px;
}

.login-heading-section > div {
    color: #fff;
    margin-bottom: 5em;
    border-bottom: 1px solid;
    padding-bottom: 2em;
}

.login-heading-section div p {
    margin: 0;
    font-size: 18px;
}

.login-heading-section div span {
    font-size: 50px;
}

.counter-slider {
    overflow: hidden;
}

.counter-slider .owl-nav {
    display: none;
}

.contact_us1 {
    background-color: #FFFFFF63 !important;
}

@media (max-width: 767px) {
    .login-container {
        flex-direction: column;
    }

    .login-container > div {
        width: 100%;
        height: auto;
        padding: 50px 20px;
    }

    .login-heading-section h1 {
        font-size: 36px;
        line-height: 45px;
    }

    .login-heading-section div span {
        font-size: 40px;
    }

    .login-heading-section > div {
        margin: 10em 0 1em;
    }

    .login-form-section h2 {
        font-size: 30px;
    }

    .login-container > div.login-heading-section {
        padding-top: 11em;
    }
}