/*
 * Password Management Servlets (PWM)
 * http://www.pwm-project.org
 *
 * Copyright (c) 2006-2009 Novell, Inc.
 * Copyright (c) 2009-2022 The PWM Project
 *
 * Licensed 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.
 */

html {
    background-image: url('amberg.jpg');
    background-size: cover;
    background-color: White;
}

p {
    color: black;
}

#header-warning {
    background-color: white;
    color: #0a0a0a;
    text-align: center;
    padding-top: 4px;
    padding-bottom: 4px;
    text-decoration: none;
    opacity: 0.9;
    animation: fadein 0.5s;
}

#header-page {
    color: black;
}

#header-title {
    color: black;
}

#header {
    width: 100%;
    height: 70px;
    margin: 0;
    background-image: none;
    background-color: white;
    color: black;
    filter:alpha(opacity=50);
    opacity: 0.8;
}

#header-company-logo {
    position: relative;
    float: left;
    top: 10px;
    left: 10px;
    width: 154px;
    height: 50px;
    z-index: 1;
    background-image: url('Logo-RGB.png');
}

#centerbody {
    background-color: white;
    color: black;
    border: 2px;
    border-style: solid;
    border-radius: 5px;
    padding: 5px 5px 5px 5px;
}

#centerbody.tile-centerbody {
    border-radius: 5px;
    width:auto; !important;
    margin:auto;
}

.header-button {
    margin: 0px;
    margin-top: 6px;
    margin-left: 6px;
    border: 1px solid transparent;
}
.header-button:hover {  border: 1px solid #f39c12; }

#header-username-group, #header-username {
    text-align: right;
}

#header-username-caret span.m-icon {
    content: "\f08b";
}

.pwm-icon-globe::before {
content: "\f0ac";
}

.tile {
    width: 165px;
    height: 165px;
    margin: 10px;
    opacity: 0.7;
    transition: opacity 1s, box-shadow 2s;
}

.tile:hover {
    opacity: 1;
    box-shadow: 0 0 0 0 white, 0 0 0 0 white, 9px 0 12px -4px #B2B1B9, -9px 0 12px -4px #B2B1B9;
}

#footer {
    background-color: white;
    color: #0a0a0a;
    opacity: 0.8;
}

a {
    color: #330033;
    text-decoration: underline;
    font-weight: bold
}


.message {
    background-color: inherit;
}

.message-info {
    background-color: #ffcccc;
}

.message-error {
    background-color: #00cccc;
}