.login-container {
    padding-top: 40px;
}

body .login-container input {
    border-radius: var(--default-border-radius);
}

[for="show-password"] span {
    font-size: 14px;
}

.title span {
    font-size: 18px;
}

.user-login .note span {
    font-size: 16px;
}

.login-container .fieldset:after {
    text-align: start;
    margin-top: 15px;
    margin-bottom: 15px;
    color: var(--primary-text-color);
}

.user-login {
    position: relative;
}

.user-login::after {
    content: '';
    background-color: var(--secondary-main-color);
    width: 33%;
    height: 6px;
    position: absolute;
    bottom: 0;
    left: 33%;
    border-radius: 4px;
    opacity: 30%;
}

.new-customer .content span {
    line-height: 26px;
}

.user-login .forgot-password a {
    font-size: 14px;
    text-decoration: underline;
}

.action.primary span,
.actions-container a.action.primary,
.action.primary a {
    font-size: 14px !important;
    font-weight: 600 !important;
}

@media screen and (min-width: 768px) {
    .user-login {
        padding-right: 8%;
    }

    .new-customer {
        padding-left: 8%;
    }

    .user-login::after {
        width: 6px;
        height: 100px;
        top: 140px;
        bottom: 0;
        left: 100%;
        background-color: var(--grey);
        opacity: 1;
    }
    
}