﻿* {
    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: #f0f0f8;
}

.loginForm {
    width: 100%;
    height: 100%;
    display: flex;
}

.loginForm .leftPanel {
    width: 800px;
    height: 100%;
    background: #296898;
    color: white;
    font-weight: 100;
    font-size: 48px;
    display: table;
}

/*PERSONALIZACION MGT*/
.loginForm .leftPanel {
        background-image: url(logoMGT.png) !important;
        background-color: darkred !important;
        background-size:cover;
}

.loginForm .leftPanel span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    padding: 10px;
}

/*PERSONALIZACION MGT*/
.loginForm .leftPanel span {
    display: none;
}

.loginForm .rightPanel {
    display: inline-block;
    height: 100%;
    padding: 50px;
    background-color: #f0f0f8;
}

.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: 1px solid #ddd !important;
}

.loginForm .form button {
    width: 150px;
    background: #296898;
    color: white;
    border: 0px;
    padding: 10px;
    font-size: 12pt;
    cursor: pointer;
    float: right;
}

.loginForm .form button:hover {
    background: #307bb5;
}

.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: #f0f0f8;
    padding: 0 10px;
    color: #888;
}

.loginForm .azureButton {
    width: 400px;
    background: #296898;
    color: white;
    border: 0px;
    padding: 10px;
    font-size: 12pt;
    cursor: pointer;
}

.loginForm .azureButton:hover {
    width: 400px;
    background: #307bb5;
}

.splashcontainer {
    background-color: #296898;
    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: 45px;
    color: white;
    display: block;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

#loading-bar1 {
    animation: loading-bar-morph 1s linear .1s infinite;
    transform-origin: 15px 15px;
    fill: white;
}

#loading-bar2 {
    animation: loading-bar-morph 1s linear .2s infinite;
    transform-origin: 55px 15px;
    fill: white;
}

#loading-bar3 {
    animation: loading-bar-morph 1s linear .4s infinite;
    transform-origin: 95px 15px;
    fill: white;
}

#loading-bar4 {
    animation: loading-bar-morph 1s linear .6s infinite;
    transform-origin: 135px 15px;
    fill: white;
}

#loading-bar5 {
    animation: loading-bar-morph 1s linear .8s infinite;
    transform-origin: 175px 15px;
    fill: white;
}

@keyframes loading-bar-morph {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.2);
    }
    100% {
        transform: scale(1);
    }
}

@media screen and (max-width: 800px) 
{
    .loginForm {
        display:block;
        text-align:center;
    }
    .loginForm .leftPanel {
        display: block;
        width: initial;
        height: initial;
        font-size: 30px;
    }

    /*PERSONALIZACION MGT*/
    .loginForm .leftPanel {
        height: 100px;
        background-image:url(logoMGT2.png) !important;
        background-position-y:bottom;
    }

    .loginForm .leftPanel span {
        display:block;
    }

    /*PERSONALIZACION MGT*/
    .loginForm .leftPanel span {
        visibility:hidden;
    }

    .loginForm .rightPanel {
        height: auto;
        padding: 50px 0px 0px 0px;
        text-align:left;
        width:80%;
    }
    .loginForm .separator{
        width:100%;
    }
    .loginForm .azureButton {
        width: 100%;
    }
    .loginForm .azureButton:hover {
        width: 100%;
    }
    .loginForm .form input[type=text], input[type=password] {
        width: 100%;
    }
}
