/* Cereda Systems Branding */

/* Logo Styling */
.login-ui .login-dialog .logo {
    background-image: url('app/ext/ceredabranding/images/cereda-logo.png');
    width: 100%;
    height: 5.5em;
    -webkit-background-size: contain;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 0 auto 2em auto;
}

.login-ui .login-dialog .version {
	display: none;
}

/* Login Page Background - Cereda Primary Color */
div.login-ui {
    background: #008488;
    background-color: #008488;
    background-image: none;
}

/* Login Dialog - White Background */
.login-ui .login-dialog {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 132, 136, 0.3);
    padding: 2em;
    border: none;
}

/* Input Fields */
.login-ui .login-dialog input[type="text"],
.login-ui .login-dialog input[type="password"] {
    border: 1px solid #69727d;
    border-radius: 3px;
    color: #1f2124;
    background-color: #ffffff;
    padding: 10px 14px;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.login-ui .login-dialog input[type="text"]:focus,
.login-ui .login-dialog input[type="password"]:focus {
    border-color: #008488;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 132, 136, 0.1);
}

/* Buttons - Cereda Primary */
.login-ui .login-dialog button,
.login-ui .login-dialog input[type="submit"] {
    background-color: #008488;
    color: #ffffff;
    border-radius: 3px;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: normal;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-ui .login-dialog button:hover,
.login-ui .login-dialog input[type="submit"]:hover {
    background-color: #006d71;
}

.login-ui .login-dialog button:active,
.login-ui .login-dialog input[type="submit"]:active {
    background-color: #005a5e;
}

/* Text Styling */
.login-ui .login-dialog {
    color: #1f2124;
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Labels */
.login-ui .login-dialog label {
    color: #1f2124;
    font-weight: normal;
}

/* Links */
.login-ui .login-dialog a {
    color: #008488;
    text-decoration: none;
}

.login-ui .login-dialog a:hover {
    color: #006d71;
    text-decoration: underline;
}

/* Error Messages */
.login-ui .login-dialog .error,
.login-ui .login-dialog .message.error {
    color: #d9534f;
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 3px;
    padding: 10px;
}

/* Success Messages */
.login-ui .login-dialog .success,
.login-ui .login-dialog .message.success {
    color: #5cb85c;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 3px;
    padding: 10px;
}
/*
 * 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;

}
