<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.duo-signature-response-field-container{height:100%;width:100%;position:fixed;left:0;top:0;display:table;background:white}.duo-signature-response-field{width:100%;display:table-cell;vertical-align:middle}.duo-signature-response-field input[type="submit"]{display:none !important}.duo-signature-response-field iframe{width:100%;max-width:620px;height:330px;border:0;box-shadow:4px 4px 8px rgba(0,0,0,0.5);display:block;margin:1.5em auto}.duo-signature-response-field iframe{opacity:1;-webkit-transition:opacity .125s;-moz-transition:opacity .125s;-ms-transition:opacity .125s;-o-transition:opacity .125s;transition:opacity .125s}.duo-signature-response-field.loading iframe{opacity:0}/* Main Login-UI Class that is being replaced via meta tag at top of login-override.html */
div.login-ui {
  background-image: radial-gradient(
    circle farthest-corner at 10% 20%,
    rgba(90, 92, 106, 1) 0%,
    rgba(32, 45, 58, 1) 81.3%
  );
}

.login-ui .login-dialog {
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 1) 0px 25px 50px -12px;
}

/* Login Card with drop shadow */
.custom-login-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
  width: 768px;
  max-width: 100%;
  min-height: 480px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Sizing for customer logo */
.customer-logo {
  width: 10em;
  height: 10em;
  -webkit-background-size: 10em auto;
}

.logo-container {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.logo-container a {
  border: 1px solid #dddddd;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0 5px;
  height: 40px;
  width: 40px;
}

/* Mini 'Powered by:' text below org logo and above webhouse name &amp; logo */
.powered-by {
  font: message-box;
  padding-top: 10px;
}

/* WebHouse, Inc. text next to webhouse logo */
.webhouse-inc {
  font-size: large;
  padding-left: 3px;
}

/* Forgot password text under button */
.forgot-pw {
  font-size: 16px;
  text-align: center;
  padding-top: 1rem;

}

.login-ui .sso-providers:last-child {
  display: none !important;
}

/**
 * Set up the logo used at the top of the login dialog box, including sizing it
 * appropriately and pulling in the custom image.
 */
 .login-ui .login-dialog .logo {
  width: 4em;
  height: 4em;
  background-size:         4em 4em;
  -moz-background-size:    4em 4em;
  -webkit-background-size: 4em 4em;
  -khtml-background-size:  4em 4em;
  background-image: url('app/ext/webhouse-branding/images/webhouse-logo.png');
}

/* Support link */
.support-link {
  font-size: 16px;
  text-align: center;
  padding-top: 1rem;
}

/* Mini webhouse logo next to webhouse name */
.webhouse-logo {
  width: 2em;
  height: 2em;
  -webkit-background-size: 2em auto;
}

.customer-logo {
  width: 98px;
  height: 98px;
}

/* Login Button - inspired by GumRoad buttons (found here: https://copy-paste-css.com/) */
.custom-buttons .customLogin {
  outline: 0;
  grid-gap: 8px;
  align-items: center;
  background: 0 0;
  border: 1px solid #c2c2c2;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  flex-shrink: 0;
  font-size: 16px;
  gap: 8px;
  justify-content: center;
  line-height: 1.5;
  overflow: hidden;
  padding: 6px 75px;
  text-decoration: none;
  text-overflow: ellipsis;
  transition: all 0.14s ease-out;
  white-space: nowrap;
  color: black;
  text-shadow: unset;
}

.custom-buttons .customLogin:hover {
  box-shadow: 0px 0px 0 #0064e7;
  transform: translate(-2px, -2px);
  background-color: #569cff;
  background-color: -webkit-linear-gradient(to right, #008be7, #41c0ff);
  background-color: linear-gradient(to right, #008be7, #41c0ff);
}

.custom-buttons .customLogin:focus-visible {
  outline-offset: 1px;
}

/* Padding around username input */
.labeled-field-username {
  padding: 5px;
}

/* Padding around password input */
.labeled-field-password {
  padding: 5px;
}

/* Centers username placeholder text */
.labeled-field-username .field-header {
  padding: 0px;
}

/* Centers password placeholder text */
.labeled-field-password .field-header {
  padding: 0px;
}

/* Password input styling - below is styling for onFocus event*/
.password-field .ng-valid {
  border-radius: 5px;
  background: rgb(249, 250, 250);
  border: 1px solid rgb(181, 189, 196);
  font-size: 16px;
  height: 40px;
  line-height: 24px;
  padding: 7px 8px;
  color: rgb(8, 9, 10);
  box-shadow: none;
}

.password-field .ng-valid:focus {
  background-color: #fff;
  border-color: #24a7ff;
  box-shadow: 1px 1px 0 #24a7ff;
  outline: none !important;
}

/* Username input styling - below is styling for onFocus event*/
.username-field .ng-valid {
  border-radius: 5px;
  background: rgb(249, 250, 250);
  border: 1px solid rgb(181, 189, 196);
  font-size: 16px;
  height: 40px;
  line-height: 24px;
  padding: 7px 8px;
  color: rgb(8, 9, 10);
  box-shadow: none;
}

.username-field .ng-valid:focus {
  background-color: #fff;
  border-color: #24a7ff;
  box-shadow: 1px 1px 0 #24a7ff;
  outline: none !important;
}

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,800");

* {
  box-sizing: border-box;
}

h1.customH1 {
  font-weight: bold;
  margin: 0;
}

p.customP {
  font-size: 14px;
  font-weight: 100;
  line-height: 20px;
  letter-spacing: 0.5px;
  margin: 10px 0 15px;
}

form.customForm {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 50px;
  height: 100%;
  text-align: center;
}

input.customLogin {
  background-color: #eee;
  border: none;
  padding: 12px 15px;
  margin: 8px 0;
  width: 100%;
}

.custom-form-container {
  position: absolute;
  top: 0;
  height: 100%;
  transition: all 0.6s ease-in-out;
}

.custom-sign-in-container {
  left: 0;
  width: 50%;
  z-index: 2;
}

.custom-login-container.right-panel-active .custom-sign-in-container {
  transform: translateX(100%);
}

.sign-up-container {
  left: 0;
  width: 50%;
  opacity: 0;
  z-index: 1;
}

.custom-login-container.right-panel-active .sign-up-container {
  transform: translateX(100%);
  opacity: 1;
  z-index: 5;
  animation: show 0.6s;
}

@keyframes show {
  0%,
  49.99% {
    opacity: 0;
    z-index: 1;
  }

  50%,
  100% {
    opacity: 1;
    z-index: 5;
  }
}

.overlay-container {
  position: absolute;
  top: 0;
  left: 50%;
  width: 50%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.6s ease-in-out;
  z-index: 100;
}

.custom-login-container.right-panel-active .overlay-container {
  transform: translateX(-100%);
}

.overlay {
  background: #ff416c;
  background: -webkit-linear-gradient(to right, #0064e7, #41c0ff);
  background: linear-gradient(to right, #0064e7, #41c0ff);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  color: #ffffff;
  position: relative;
  left: -100%;
  height: 100%;
  width: 200%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.custom-login-container.right-panel-active .overlay {
  transform: translateX(50%);
}

.overlay-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0 40px;
  text-align: center;
  top: 0;
  height: 100%;
  width: 50%;
  transform: translateX(0);
  transition: transform 0.6s ease-in-out;
}

.overlay-left {
  transform: translateX(-20%);
}

.custom-login-container.right-panel-active .overlay-left {
  transform: translateX(0);
}

.overlay-right {
  right: 0;
  transform: translateX(0);
}

.custom-login-container.right-panel-active .overlay-right {
  transform: translateX(20%);
}

a {
  color: #000000;
  text-decoration: none
}

a:active {
  color:rgba(90, 92, 106, 1)
}

a:hover {
  text-decoration: underline
}

.logo-box {
  background: white;
  padding: 15px 15px 15px 15px;
  border-radius: 44px
}
/*
 * 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;

}
</pre></body></html>