* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font: 10px "Helvetica Neue", "Segoe UI", Helvetica, Arial, "Lucida Grande", sans-serif;
    background-color: #fff;
    -webkit-user-select: none;
    user-select: none;
}

.fullscreen-pane {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    display: none;
}

.show-on-page-load {
    display: block;
}

.web-screen {
    background-color: #161619;
    background-image: url('fondo.jpg');
    background-size: 100% 100%;
    min-height: 100vh;
    height: auto !important;
}

.vertical-center-outer {
    display: table;
    width: 100%;
    height: 100%;
}

.vertical-center-inner {
    display: table-cell;
    vertical-align: middle;
}

.web-screen .content-area {
    padding: 65px 0;
    background-color: rgba(63, 54, 67, 0.8);
    text-align: center;
}

.web-screen .main-text {
    color: white;
    font-size: 18px;
    font-weight: 300;
}

.web-screen .detail-text {
    color: #9a9a9a;
    font-size: 14px;
    font-weight: 300;
}

.logon-area {
    display: table;
    width: 100%;
}

.logon-logo-container {
    background-image: url('logo.png');
    background-repeat: no-repeat;
    background-position: center center;
}

.form-content {
    display: table-cell;
    padding: 0;
    vertical-align: middle;
}

.credentialform {
    vertical-align: middle;
    margin: 0;
    text-align: left;
    width: 570px;
}

.credentialform .field {
    clear: both;
    padding: 6px 0;
}

.credentialform .field .left {
    float: left;
    width: 185px;
    padding-top: 12px;
}

.credentialform .field .right {
    float: right;
    width: 385px;
}

.credentialform h1 {
    font-size: 18px;
    color: white;
    font-weight: 300;
}

.credentialform label {
    color: #999;
    font-size: 17px;
}

.credentialform input[type="text"],
.credentialform input[type="password"] {
    box-sizing: border-box;
    width: 100%;
    height: 44px;
    outline: 0;
    border: 0;
    background-color: white;
    font-size: 16px;
    color: #666;
    padding-left: 18px;
}

.credentialform input[type="text"]:focus,
.credentialform input[type="password"]:focus {
    color: black;
}

.credentialform .buttonscontainer {
    width: 385px;
    text-align: center;
}

.credentialform .buttonsrow {
    padding-top: 27px;
}

.button {
    display: block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    background-color: #bbb;
    color: white;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    padding: 0;
    border: none;
    cursor: pointer;
}

.button.default {
    background-color: #02a1c1;
}

.button.default:hover {
    background-color: #0190ad;
}

.button:disabled {
    background-color: #999;
    cursor: not-allowed;
}

.logon-spacer {
    display: table-cell;
    height: 52px;
    min-width: 52px;
}

.logon-spacer:before {
    content: '';
}

.logon-large.logon-logo-container {
    display: table-cell;
    vertical-align: middle;
    width: 415px;
    height: 52px;
    background-position:  center;
}

.logon-small.logon-logo-container {
    display: none;
}



@media all and (max-width: 609px) {
    .logon-small.logon-logo-container {
        display: block;
        height: 60px;
        width: 310px;
        margin: 20px auto 30px;
        background-size: contain;
        background-position: center;
    }
    
    .logon-large.logon-logo-container {
        display: none;
    }
    
    .logon-spacer {
        display: none;
    }
    
    .logon-area {
        display: block;
    }
    
    .form-content {
        display: block;
    }
    
    .credentialform {
        width: 100%;
        text-align: left;
    }
    
    .form-container {
        margin: 0 36px;
        padding: 0;
    }
    
    .web-screen .main-text {
        color: #e8e8e8;
        font-size: 16px;
        text-align: left;
        margin-bottom: 12px;
    }
    
    .credentialform h1 {
        font-size: 15px;
        color: #e8e8e8;
        text-align: left;
        margin-bottom: 12px;
        font-weight: 300;
    }
    
    .credentialform .field {
        padding: 0 0 15px 0;
        clear: both;
    }
    
    .credentialform .field .left,
    .credentialform .field .right {
        float: none;
        width: 100%;
    }
    
    .credentialform .field .left {
        padding-top: 0;
        margin-bottom: 8px;
    }
    
    .credentialform label {
        font-size: 14px;
        color: #d0d0d0;
        display: block;
    }
    
    .credentialform input[type="text"],
    .credentialform input[type="password"] {
        width: 100%;
        height: 46px;
        font-size: 15px;
        padding-left: 12px;
        color: #666;
        background-color: white;
    }
    
    .credentialform .buttonscontainer {
        width: 100%;
        padding: 8px 0 0 0;
        text-align: center;
    }
    
    .credentialform .buttonsrow {
        padding-top: 15px;
        clear: both;
    }
    
    .button {
        width: 100%;
        height: 46px;
        line-height: 46px;
        padding: 0;
        font-size: 15px;
        background-color: #0099b8;
    }
    
    .button.default {
        background-color: #0099b8;
    }
    
    .button.default:hover {
        background-color: #007a93;
    }
    
    .web-screen .content-area {
        padding: 30px 0;
    }
    
    .vertical-center-inner {
        vertical-align: top;
    }
}



@media all and (max-width: 380px) {
    .form-container {
        margin: 0 25px;
    }
    
    .logon-small.logon-logo-container {
        width: 180px;
        height: 55px;
    }
}
