/*
 * Copyright (c) 2015 Drever Technical Solutions Inc. All rights reserved.
 */

body {
    font: 14px 'Open Sans', sans-serif;
    font-weight: normal;
    color: #404040;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f5f5f5;
}

a:link,
a:visited,
a:active,
a:hover {
    text-decoration: none;
    color: #157FCC;
}

a:hover {
    text-decoration: underline;
    color: #005E7B;
}

.button {
    border-radius: 4px;
    border: 1px solid #126DAF;
    box-sizing: border-box;
    background: linear-gradient(to bottom, #4B9CD7 0%, #3892D3 50%, #358AC8 51%, #3892D3);
    padding: 3px 8px;
    cursor: pointer;
    outline: none;
    white-space: nowrap;
    overflow: hidden;

    line-height: 28px;
    font-size: 16px;

    text-align: center;
    color: #FFFFFF;
    font-weight: bold;
    font-family: 'Open Sans', 'Helvetica Neue', helvetica, arial, verdana, sans-serif;
}

.button:hover {
    background: linear-gradient(to bottom, #4792C8 0%, #3386C2 50%, #307FB8 51%, #3386C2);
}

#nonapp-logo {
    height: 60px;
    display: block;
    margin: 90px auto 40px auto;
}

#nonapp-container {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);

    width: 300px;
    padding: 20px;
    margin: 20px auto;
}

#nonapp-container .heading {
    font-size: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 20px;
}

#nonapp-container label {
    color: #707070;
    display: block;
    margin-bottom: 5px;
}

#nonapp-container .field {
    padding: 4px 0;
    margin-bottom: 20px;
}

#nonapp-container .field input {
    height: 25px;
    width: 300px;
    padding: 4px 5px;
    box-sizing: border-box;
}

#nonapp-container .buttons {
    padding-top: 20px;
    border-top: 1px solid #ccc;
}

#nonapp-container .link {
    float: right;
    padding-top: 10px;
}

#nonapp-container .serverErrorMessage {
    color: red;
    margin-top: 20px;
    text-align: center;
}

#nonapp-container .serverMessage {
    color: blue;
    margin-top: 20px;
    text-align: center;
}