﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::-moz-selection {
    background: transparent;
}

::selection {
    background: transparent;
}

html, body {
    font-family: 'Segoe UI Light','Segoe','Segoe UI','SegoeUI-Light-final',Tahoma,Helvetica,Arial,sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 12pt;
    color: #222;
    height: 100%;
    overflow:hidden;
    background: #ddd;
}

.loginForm {
    width: 100%;
    height: 100%;
    display: flex;
}

.loginForm .leftPanel {
    width: 800px;
    height: 100%;
    background: #177878;
    color: white;
    font-weight: 100;
    font-size: 40px;
    display: table;
}

.loginForm .leftPanel span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 10px;
}

.loginForm .rightPanel {
    display: inline-block;
    height: 100%;
    padding: 50px;
    background-color: #ddd;
}

.loginForm .rightPanel span {
    font-size: 20pt;
}

.loginForm .form {
    margin-top: 20px;
    margin-bottom: 20px;
    display: block;
    font-family:Arial;
}

.loginForm .form input[type=text], input[type="password"] {
    font-size: 12pt;
    display: block;
    padding: 5px;
    width: 400px;
    margin-bottom: 10px;
    border: 0px !important;
}

.loginForm .form button {
    width: 150px;
    background: #177878;
    color: white;
    border: 0px;
    padding: 10px;
    font-size: 12pt;
    cursor: pointer;
    float: right;
}

.loginForm .form .error {
    display: block;
    color: red;
    font-size: 11pt;
    font-family: Arial;
    font-weight: bold;
    margin-bottom:10px;
}

.loginForm .form .info {
    display: block;
    color: blue;
    font-size: 11pt;
    font-family: Arial;
    font-weight: bold;
    margin-bottom: 10px;
}

.loginForm .separator {
    margin-top: 30px;
    margin-bottom: 20px;
    width: 400px;
    height: 12px;
    border-bottom: 1px solid #aaa;
    text-align: center;
    display: block;
}

.loginForm .separator .separator-text {
    font-size: 16px;
    background-color: #ddd;
    padding: 0 10px;
    color: #888;
}

.loginForm .azureButton {
    width: 400px;
    background: #177878;
    color: white;
    border: 0px;
    padding: 10px;
    font-size: 12pt;
    cursor: pointer;
}

.splashcontainer {
    background-color: #177878;
    width: 100%;
    height: 100%;
    position: absolute;
    text-align: center;
}

.splash {
    font-family: 'Segoe UI Light','Segoe','Segoe UI','SegoeUI-Light-final',Tahoma,Helvetica,Arial,sans-serif;
    font-weight: 100;
    font-size: 40px;
    color: white;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.drops {
    display: block;
    color: white;
    list-style: none;
    position: relative;
    height: 10px;
    width: 140px;
    margin: 0 auto;
    margin-top: 10px;
}

.drops li {
    position: absolute;
    top: 0px;
    height: 10px;
    width: 10px;
    background-color: #fff;
    animation-name: loading;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: normal;
}

.drops li:nth-child(1) {
    left: 0px;
    animation-delay: 0ms;
}

.drops li:nth-child(2) {
    left: 40px;
    animation-delay: 150ms;
}

.drops li:nth-child(3) {
    left: 80px;
    animation-delay: 300ms;
}

.drops li:nth-child(4) {
    left: 120px;
    animation-delay: 450ms;
}

.drops li:nth-child(5) {
    left: 160px;
    animation-delay: 600ms;
}

@keyframes loading {
    0% {
        width: 4px;
        height: 4px;
        top: 2px;
    }

    50% {
        width: 10px;
        height: 10px;
        top: 0px;
    }

    100% {
        width: 4px;
        height: 4px;
        top: 2px;
    }
}

@media screen and (max-width: 800px) 
{
    .loginForm {
        display:block;
        text-align:center;
    }
    .loginForm .leftPanel {
        display: block;
        width: initial;
        height: initial;
        font-size: 30px;
    }
    .loginForm .leftPanel span {
        display:block;
    }
    .loginForm .rightPanel {
        height: auto;
        padding: 50px 0px 0px 0px;
        text-align:left;
        width:80%;
    }
    .loginForm .separator{
        width:100%;
    }
    .loginForm .azureButton {
        width: 100%;
    }
    .loginForm .form input[type=text], input[type=password] {
        width: 100%;
    }
}
