:root {
    --embm-blue: #264dfb;
    --embm-blue-dark: #1836c8;
    --embm-orange: #e46d32;
    --embm-orange-light: #fba857;
    --embm-ink: #242222;
}

.login-ui {
    background:
        radial-gradient(circle at 15% 10%, rgba(38, 77, 251, 0.14), transparent 34%),
        radial-gradient(circle at 90% 85%, rgba(228, 109, 50, 0.14), transparent 36%),
        linear-gradient(135deg, #f7f9ff 0%, #fffaf7 100%);
}

.login-ui .login-dialog {
    width: min(360px, calc(100vw - 32px));
    max-width: 360px;
    padding: 28px 30px 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(36, 34, 34, 0.16);
    border-top: 4px solid var(--embm-blue);
    border-radius: 12px;
    box-shadow:
        0 18px 48px rgba(24, 54, 200, 0.14),
        0 4px 14px rgba(36, 34, 34, 0.10);
}

.login-ui .login-dialog .logo {
    width: 100%;
    height: 65px;
    margin: 0 auto 18px;
    background-image: url("app/ext/embm-qb-remote-access-branding/images/embm-logo.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.login-ui .login-dialog .version,
.login-ui .login-dialog .version .app-name {
    color: var(--embm-ink);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 21px;
    font-weight: 750;
    letter-spacing: 0.2px;
    line-height: 1.25;
    text-align: center;
}

.login-ui .login-dialog .login-fields input {
    box-sizing: border-box;
    border: 1px solid rgba(36, 34, 34, 0.26);
    border-radius: 7px;
    font-family: "Segoe UI", Arial, sans-serif;
    transition:
        border-color 140ms ease,
        box-shadow 140ms ease;
}

.login-ui .login-dialog .login-fields input:focus {
    border-color: var(--embm-blue);
    box-shadow: 0 0 0 3px rgba(38, 77, 251, 0.14);
    outline: none;
}

.login-ui .login-dialog input[type="submit"] {
    min-height: 42px;
    color: #ffffff;
    background: var(--embm-blue);
    border: 0;
    border-radius: 7px;
    box-shadow: 0 6px 16px rgba(38, 77, 251, 0.24);
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    transition:
        background-color 140ms ease,
        box-shadow 140ms ease,
        transform 140ms ease;
}

.login-ui .login-dialog input[type="submit"]:hover,
.login-ui .login-dialog input[type="submit"]:focus {
    background: var(--embm-blue-dark);
    box-shadow: 0 8px 20px rgba(38, 77, 251, 0.30);
}

.login-ui .login-dialog input[type="submit"]:active {
    transform: translateY(1px);
}

@media (max-width: 480px) {
    .login-ui .login-dialog {
        padding: 24px 20px 24px;
    }

    .login-ui .login-dialog .logo {
        height: 56px;
    }

    .login-ui .login-dialog .version,
    .login-ui .login-dialog .version .app-name {
        font-size: 18px;
    }
}
/*
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 */

/* Label/tag denoting the user that shared a connection */
.jdbc-share-tag {

    background: #0095ff;
    padding: 0.25em;

    -moz-border-radius:    0.25em;
    -webkit-border-radius: 0.25em;
    -khtml-border-radius:  0.25em;
    border-radius:         0.25em;

    color: white;
    font-size: 0.75em;
    font-weight: bold;

}
