// Login Form CSS
.alpha-form-login {
    font-size: 1.3rem;

    p {
        font-size: inherit;
        line-height: 1.84;

        &:empty:before {
            content: none;
        }
    }

    .form-row {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;

        label {
            display: inline-block;
            margin-bottom: 4px;
        }

        span {
            vertical-align: middle;
        }

        .form-control {
            height: 3.7rem;
        }

        .input-text {
            background: var(--alpha-change-color-light-1);
        }

        input {
            margin-#{$right}: .5rem;

            &[type="radio"] {
                vertical-align: sub;
            }
        }
    }

    .form-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-size: 1.3rem;

        p {
            margin-bottom: 8px;
            line-height: inherit;
        }

        &~.button {
            margin-top: 2rem;
        }
    }

    .button {
        margin-top: 3rem;
        padding: 1.2rem;
        border-radius: var(--alpha-border-radius);
    }

    .lost-link {
        text-align: $right;
        color: $danger-color;

        &:hover {
            text-decoration: underline;
        }
    }

    .custom-checkbox {
        margin-bottom: 2.5rem;
        line-height: initial;
    }

    .woocommerce-password-strength {
        margin: 10px 0;
        padding: 8px;
        color: var(--alpha-change-color-light-1);
        text-align: center;
        background: var(--alpha-primary-color);

        &.short {
            background: $alert-color;
        }

        &.bad {
            background: $danger-color;
        }

        &.good {
            background: $success-color;
        }
    }

    .woocommerce-password-hint {
        font-size: 1.2rem;
        line-height: 1.86;
    }

    .title {
        font-size: 1.3rem;
        font-weight: normal;
        color: var(--alpha-body-color);
        margin-bottom: 1.5rem;
    }

    .button {
        display: block;
        width: 100%;
    }
}

.login-popup .nav>li>a {
    justify-content: center;
    border-bottom: 3px solid transparent;
}

.social-login .social-icons {
    justify-content: center;
}