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


/**
 * 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 {
    background-size: cover;
    background-image: url('app/ext/guacamole-nextlab/resources/images/nextlab4business.png');
    width: 100%;
    height: 5.1em;
}


/*
 * Sets up the custom coloring around the header elements.
 */
.header {
    border-bottom: 1px solid rgb(255, 255, 255);
    box-shadow: rgba(0,0,0,0.75);
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

/*
 * Changes the default color and fonts of the submit buttons, along with font
 * size and weight.
 */
input[type="submit"], button, a.button {
    background-color: rgb(0, 81, 255);
}

/*
 * Changes the coloring on the submit-styled buttons when you hover over them.
 */
input[type="submit"]:hover, button:hover, a.button:hover {
    background-color: rgb(0, 195, 255);
    border: 1px solid rgb(0, 81, 255);
}

/*
 * Changes the coloring on the submit-styled buttons when you click on them.
 */
input[type="submit"]:active, button:active, a.button:active {
    background-color: rgba(0,145,255,1.0);
    border: 1px solid rgb(0, 102, 255);
}

/*
 * Provide a custom color scheme for danger-styled buttons.
 */
button.danger, a.button.danger {
    background: rgba(255,95,0,1.0);
    border: 1px solid rgba(255,0,0,1.0);
}

/*
 * Provide a cusotm color scheme for hovering over danger-styled buttons.
 */
button.danger:hover, a.button.danger:hover {
    background: rgba(255,0,0,0.75);
    border: 1px solid rgba(255,95,0,1.0);
}
