* {
  margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Europa',Arial,Helvetica,sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
}

@font-face {
	font-family:'Europa';
	font-style: inherit;
	font-weight: 300;
	src: url(app/ext/abacampus/fonts/europa-light-webfont.woff) format('woff');
 }

@font-face {
	font-family:'Europa';
	font-style: normal;
	font-weight: 400;
	src: url(app/ext/abacampus/fonts/europa-regular-webfont.woff) format('woff');
 }

 @font-face {
	font-family:'Europa';
	font-style: bold;
	font-weight: 800;
	src: url(app/ext/abacampus/fonts/europa-bold-webfont.woff) format('woff');
 }

div.login-ui {
	background-image: url(app/ext/abacampus/images/background.png);
  background-size: cover;
}

.login-ui div.login-dialog-middle {
  padding: 20px;
}

.login-ui div.login-dialog {
  animation: fadein .125s linear;
  -moz-animation: fadein .125s linear;
  -webkit-animation: fadein .125s linear;
  width: 500px;
  max-width: 500px;
  height: auto;
  text-align: left;
  padding: 50px;
  border: none;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgb(54 61 74 / 20%);
  opacity: 1;
  transform: rotateX(0deg);
  transform-origin: top;
  transition: opacity 175ms ease-out,transform 175ms ease-out;
	background-color: #fff;
}

.login-ui .login-dialog .logo {
  background-image: url(app/ext/abacampus/images/logo.png);
  background-repeat: no-repeat;
  margin: 0;
  width: auto;
  height: 50px;
  max-width: 185px;
  display: block;
  margin-bottom:10px;
  background-size: 183px auto;
  -webkit-background-size: 183px auto;
}

.login-ui .login-dialog .buttons input[type="submit"] {
  transition: all ease-in 0.2s;
  -webkit-transition: all ease-in 0.2s;
  background: #de323c;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 17px 44px;
  font-size: 14px;
  line-height: 24px;
  text-align: center;
  border: 1px solid #de323c;
  cursor: pointer;
  font-family: 'Europa',Arial,Helvetica,sans-serif;
  text-shadow: none;
  font-weight: 800;
  box-shadow: none;
}

.login-ui .login-dialog .buttons input[type="submit"]:hover {
  background-color: #C20936;
  color: #fff;
}

.login-ui .login-dialog .buttons input[type="submit"]:focus {
  outline: none;
}


.login-ui .login-dialog .version .app-name {
  font-weight: bold;
  text-transform: inherit;
  text-align: left;
  margin-bottom: 10px;
  display: none;
}

.login-ui .login-dialog .login-fields input {
  border: 1px solid #f4f4f4;
  background: #f4f4f4;
  border-radius: .2em;
  width: 100%;
  min-height: 60px;
  margin: 0;
  margin-bottom: .5em;
  max-width: none;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #000;
  border-radius: 0;
  font-family: 'Europa',Arial,Helvetica,sans-serif;
}

.login-ui .login-fields .labeled-field.empty input {
  background: #f4f4f4;
}

.login-ui .login-fields .labeled-field .field-header {
  color: #000;
  margin: 0 0 4px;
  display: block;
  position: relative;
  left: 0;
  right: 0;
  font-size: 18px;
  overflow: hidden;
  z-index: 0;
  opacity: 1;
}

.login-ui .login-dialog .version .version-number {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 5px;
  margin: 5px;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  border-radius: 0;
  color: white;
  background: #9999CC;
  font-size: .5em;
  font-style: normal;
  opacity: 1;
  display: none;
}

.login-ui.error p.login-error {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  padding: 1em;
  margin: 0;
  background: #de323c;
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  text-align: center;
  color: #fff;
  z-index: 999;
}

@media screen and (max-width: 580px) {
  .login-ui div.login-dialog {
    width: 400px;
    max-width: 400px;
    padding: 40px;
  }
}

@media screen and (max-width: 480px) {
  .login-ui div.login-dialog {
    width: 300px;
    max-width: 300px;
    padding: 30px;
  }
}









/*
 * 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;

}
