.modal-header {
    background-color: var(--brand-grey-dark);

    .close {
        margin-top: 0;
        color: #fff;

        &:hover,
        &:focus {
            color: #fff;
        }
    }
}

.modal-title {
    font-size: 22px;
    color: #fff;
}

.modal-content {
    border-radius: 0;

    #loggly-login-form,
    #loggly-login-form-std,
    {
    position: relative;
    text-align: center;

    label {
        display: block;
        margin-bottom: 5px;
        font-size: 16px;
        text-align: left;
    }

    input[type='text'] {
        display: inline-block;
        vertical-align: top;
        width: 70%;
        padding: 15px;
        margin-right: -4px;
        border: 2px solid transparent;
        border-radius: 6px 0 0 6px;
        background-color: #f4f4f5;
        font-size: 18px;
        line-height: 1.2;
        text-align: left;
        transition: background-color .2s ease-in-out,
            border-color .2s ease-in-out;

        &:focus {
            outline: 0;
            font-weight: 400 !important;
            color: #333840 !important;
            background-color: #fff;
            border-color: #d6d6d8;
        }

        &.valid {
            font-weight: 700;
            color: var(--brand-green);
            background-color: #ecfaf7;
        }

        &.invalid {
            font-weight: 700;
            color: red;
        }
    }

    .subdomain {
        display: inline-block;
        vertical-align: top;
        width: 30%;
        margin-right: -4px;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
        background-color: var(--brand-grey-light);
        font-size: 18px;
        color: #fff;
        line-height: 55px;
    }

    .btn {
        margin-top: 20px;
    }
}
}

.modal-footer {
    p {
        margin: 0;
        font-size: 18px;
    }
}