﻿html {
    height: 100%;
    width: 100%;
    overflow: hidden;
}
            
body {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background-color: #FFFFFF;

    font-size: 12px;
    font-weight: normal;
    font-family: Arial, sans-serif;
    color: #333333;
}
            
img {
    vertical-align: middle;
}

form {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
            
#login-background {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 0;
    background-color: #FFFFFF;
                
    background-image: url('../images/css/homepage_background.jpg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
}

#login-panel {
    min-width: 280px;
    padding-bottom: 10px;
    background-color: #323941;
                
    position: absolute;
    top: 20%;
    right: 2.5%;
    width: 10%;
}

#login-panel-body {
    padding: 15px;

    position: relative;
    top: 10%;
    height: 100%;
    padding-top: 0px;
    padding-left: 15%;
    padding-right: 15%;
}

.login-input-text {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

    position: relative;
    padding-top: 29px;
}

.login-input-text input {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
                
    display: block;
    border: 1px solid #ccc;
                
    padding: 2px;
    line-height: 18px;
    border-radius: 3px;
    width: 190px;
                
    height: 34px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}     
            
#LoginButton {
    overflow: visible;
                
    padding: 6px 12px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    background-image: none;
    border: 1px solid transparent;
                
    background-color: #007fa8;
    display: block;
    color: white;
    border-color: transparent;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    width: 196px;
    height: 10%;
    min-height: 40px;
    margin-top: 29px;
    font-size: 14px;
    font-weight: initial;
    border-radius: 5px;
    white-space:normal;
}

#loginAzureBt {
    overflow: visible;
    padding: 6px 12px;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    display: block;
    color: white;
    border-color: transparent;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
    width: 196px;
    height: 10%;
    min-height: 40px;
    margin-top: 29px;
    font-size: 14px;
    font-weight: initial;
    white-space: normal;
    text-decoration: none;
}

#loginAzureBt:hover{
    text-decoration: underline;
}
            
#login-site-logo {
    box-sizing: border-box;
                
    position: relative;
    /*right: 2.5%;
    bottom: 5%;*/
    width: 280px;
}   
            
::-webkit-input-placeholder {
    color: #299DBD;
    font-style: italic;
}

:-moz-placeholder { /* Firefox 18- */
    color: #299DBD;
    font-style: italic;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: #299DBD;
    font-style: italic;
}

:-ms-input-placeholder {  
    color: #299DBD; 
    font-style: italic;
} 

.validation-summary-errors {
    padding: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
                
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
                
    margin-top: 10px;
    margin-bottom: 0px;
}

#login-panel-body .alert ul {
    padding: 0px;
}

.alert > p, .alert > ul {
    margin-bottom: 0;
    margin-top: 0;
}

#login-panel-body .alert li {
    list-style-type: none;
    list-style-position: inside;
    margin: 0px;
    padding: 0px;
}

.alert.alert-danger a {
    outline: 0;
    border: 0;
    color: #a94442;
}

