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


/* Body and Header for layout. */
html {
  height: 100%;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  position: relative;
  margin: 0;
  padding-bottom: 2rem;
  min-height: 100%;
}

*{
  font-family: Arial, Helvetica, sans-serif;
}

.intro{
    padding: 20px 0;
    width: 100%;
    font-weight: bold;
}
body #container {
    width: 100%;
    background: white;
    text-align: center;
    padding-bottom: 20px;
    display: inline-block;
    background: #262626;
    color: #ccc;
    min-height: 570px;
}

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

.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;
}

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

#header img {
    width: 150%;
}

#footer {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    color: #ccc;
    background: black;
    /* center the element */
    right: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
}

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

/* Authorize Form CSS */
#authorizationForm {
    padding-top: 10px;
}

.form-element-label {
    padding-left: 7px;
}

td {
    display: block;
    float: left;
    text-align: left;
    padding-left: 5px;
    width: 100%
}

#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{
    width: 100%;
    padding: 10px 0;
}

.form-element-label {
    float: left;
}

tr td:nth-child(2) {
    padding-bottom: 15px;
}

input[type=text], input[type=password] {
    height: 30px;
    width:  95%;
    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: 6px;
}

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

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