/****************************************************************************
 *
 * Desktop style sheet definition.
 *
 * (C) Sound United Australia Pty Ltd 2017.
 *
 * Original Author: Kunal Bawa <kunal.bawa@dmh-global.com>
 *
 ****************************************************************************/


/* Body and Header for layout. */
*{
  font-family: Arial, Helvetica, sans-serif;
}

.intro{
    padding: 15px 0;
    width: 90%;
    text-align: center;
    margin: auto;
    font-weight: bold;
    color: #fff;
}

body {
    margin: 0;
    padding: 0;
    color: #333;
    background: #ccc;
}

#header {
    background: black;
    color: rgb(255,255,255);
    font: 30px Arial;
    overflow: hidden;
}

#header img {
    width: 100%;
}

.login-message {
    color: red;
    font-weight: bold;
}

.cookies-message {
    color: white;
    padding: 20px 10px;
}

#logout {
    display:inline-block;
    color: red;
    padding: 20px;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}

.block-center-heading {
    padding-bottom: 20px;
}

body #container {
    background: #262626;
    color: #ccc;
    border: 1px solid #ccc;
    width: 28em;
    min-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    text-align: center;
}

#reset-link {
    display:inline-block;
    color: #00d1ff;
    background: none;
    border: none;
    text-decoration: underline;
    cursor: pointer;
}

#footer {
    color: #ccc;
    background: black;
}

.control-group {
    padding-top: 20px;
}

/* Authorize Form CSS */
#authorizationForm {
    text-align: center;
    padding: 10px;
}

#authorizationForm ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    /* For IE, the outcast */
    zoom:1;
    *display: inline;
}

#authorizationForm li {
    float: left;
    padding: 2px 5px;
}

/* Form's username and password field style */
.form-element{
    padding: 10px 0;
    width: 100%;
}

table {
    max-width: 90%;
    table-layout: fixed;
    margin: auto;
    text-align: center;
}
tr td:nth-child(1) {
    width: 30%;
    text-align: right;
    padding-right: 15px;
    word-wrap:break-word;
}

tr td:nth-child(2) {
    width: 50%;
    padding-bottom: 10px;
    padding-right: 15px;
}

input[type=text], input[type=password] {
    height: 30px;
    width:  80%;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(150, 150, 150, 1.0);
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    padding-left: 5px;
}

input[type=submit] {
    margin-top: 7px;
    padding:5px 15px;
    border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
    background: #cccccc;
    font-size:  large;
    box-shadow: 0 0 3px rgb(0, 0, 0);
    /* This is to disable weird button color on ipad/iphone */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type=text]:hover, input[type=password]:hover{
    box-shadow: 0 0 3px rgb(152, 13, 26);
}

input[type=submit]:hover {
    color: rgba(215, 0, 0, 1);
    box-shadow: 0 0px 15px rgba(145, 92, 182, .4);
}

/* Help OAuth Page CSS */
#helpForm .container {
    text-align: center;
    padding: 10px;
}

#helpForm p {
    text-align: left;
    padding: 0px 10px;
}

#helpForm ul {
    text-align: left;
    padding-left: 30px;
}