body.login-ui {
    background: linear-gradient(135deg, #eef4f3 0%, #d5e6e4 50%, #bcd8d5 100%);
}

.login-ui .login-dialog {
    background: #ffffff;
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(31, 95, 91, 0.18);
    padding: 2.5em 2.5em 2em;
    max-width: 360px;
}

.login-ui .login-dialog .logo {
    background-image: url('app/ext/dotlantis-branding/images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    max-width: 220px;
    height: 48px;
    margin: 0 auto 6px;
}

.login-ui .login-dialog h1,
.login-ui .login-dialog .title {
    display: none;
}

.login-ui .login-dialog .logo::after {
    content: "";
}

.login-ui .login-dialog .login-fields .field input {
    border: 1px solid #d0dedd;
    border-radius: 10px;
    padding: 0.9em 1em;
    font-size: 1em;
    background: #f7fafa;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.login-ui .login-dialog .login-fields .field input:focus {
    outline: none;
    border-color: #1f5f5b;
    box-shadow: 0 0 0 3px rgba(31, 95, 91, 0.12);
    background: #ffffff;
}

.login-ui .login-dialog input[type=submit] {
    background: #1f5f5b;
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 1em;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.9em;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.login-ui .login-dialog input[type=submit]:hover {
    background: #174a47;
}

.login-ui .login-dialog input[type=submit]:active {
    transform: scale(0.98);
}
/*
 * 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;

}
