:root {
  --avuz-primary: #3aabde;
  --avuz-accent: #c8d614;
  --avuz-surface: #f5f5f5;
}

/* Login page background */
div.login-ui {
  background-color: var(--avuz-surface);
}

/* Login screen logo */
.login-ui .login-dialog .logo {
  width: 6em;
  height: 2.25em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  background-size: contain;
  -moz-background-size: contain;
  -webkit-background-size: contain;
  -khtml-background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("app/ext/avuz-remote/images/logo.png");
}

/* Replace app-name text with login prompt, remove uppercase */
.login-ui .login-dialog .version .app-name {
  visibility: hidden;
  position: relative;
  text-transform: none;
}

.login-ui .login-dialog .version .app-name::after {
  content: "Faça seu login";
  visibility: visible;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-weight: bold;
  font-size: 1em;
  color: inherit;
}

/* Login dialog rounded corners */
.login-ui .login-dialog {
  border-radius: 0.75em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  min-width: 340px;
}

/* Input fields rounded */
.login-ui .login-dialog input[type="text"],
.login-ui .login-dialog input[type="password"],
.login-ui .login-dialog input[type="email"] {
  border-radius: 0.4em;
}

/* Primary action buttons */
input[type="submit"],
button,
a.button {
  background-color: var(--avuz-primary);
  border: 1px solid var(--avuz-primary);
}

input[type="submit"]:hover,
button:hover,
a.button:hover {
  background-color: var(--avuz-accent);
  border: 1px solid var(--avuz-accent);
}

/* Top navigation bar */
.header {
  background-color: var(--avuz-primary);
}

/* Turnstile widget container */
#avuz-turnstile-widget {
  display: flex;
  justify-content: center;
  margin: 0.75em 0;
}
/*
 * 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;

}
