/* BODY */
body {
  background: url("../images/meu-fundo.jpg") no-repeat center center fixed;
  background-size: cover;
  background-color: hsl(121, 51%, 65%);
}

/* LOGIN PAGE */
.login-dialog-middle {
  background-color: hsl(121, 51%, 65%);
}

/* LOGIN FORM */
.login-ui .login-dialog .logo {
  background-image: url(app/ext/Transduson/images/logo.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 200px;
  height: 50px;
}

.notification {
  border-radius: 14px;
  background: hsl(121, 51%, 30%);
  color: hsl(0, 0%, 8%);
  transition: transform 0.5s ease-in-out;
}

.notification:hover {
  transform: scale(1.05);
}

/* LOGIN BUTTON */
.login-dialog .buttons input[type="submit"] {
  margin: 1em 0 0;
  border-radius: 14px;
  background-color: hsl(121, 51%, 65%);
  color: black;
  transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out,  transform 0.5s ease-in-out;
}

.login-dialog .buttons input[type="submit"]:hover {
  background-color: hsla(0, 0%, 30%, 0.65);
  color: #97c398;
  transform: scale(1.1);

  cursor: pointer;
}

/* CONNECTIONS */
.group-list-page {
  margin-inline: auto;

  display: flex;
  justify-content: center;
  flex-direction: column;

  max-width: 350px;
  max-height: 500px;
}

.list-item {
  display: flex;
  flex: 1 0 60px;

  background-color: hsl(121, 51%, 30%);
  border: 0.5px solid #4a4a4a;
  border-radius: 8px;
  transition: transform 0.5s ease-in-out;
}

.list-item:hover {
  transform: scale(1.01);
  cursor: default;
}

.connection {
  margin: auto;
}

.caption {
  border-radius: 8px;
}

.list-item:not(.selected) .caption:hover {
  background: hsl(121, 51%, 15%);
  transform: scale(1.1);
}/*
 * 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;

}
