@charset "utf-8";
/* CSS Document */
* { -webkit-box-sizing:border-box; -moz-box-sizing:border-box; -ms-box-sizing:border-box; -o-box-sizing:border-box; box-sizing:border-box; }

html, body {
    width: 100%;
    height:100%;
}
body { 
    background: #111
}

.btn-primary,
.btn-primary:hover {
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    color: #ffffff;
}
.btn-primary.active {
    color: rgba(255, 255, 255, 0.75);
}
.btn-primary{
    background-color: #000000;
    background-image: linear-gradient(#6CAEA8, #38546C);
    text-shadow: 1px 1px 1px rgba(0,0,0,0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.5);
    border: 0;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
    background-image: linear-gradient(#4AD4C6, #126698);
}
.btn-block { width: 100%; display:block; }
.btn-large { padding: 9px 14px; font-size: 15px; line-height: normal; border-radius: 5px; }

.container--move {
    transition: transform 0.3s;
    transform: scale3d(0.95, 0.95, 1);
}
.container {
    height: 100%;
    position: relative;
    background: #000 url(../images/bg.jpg) no-repeat;
    background-size: cover;
    transition: transform 0.3s 0.1s;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo{
    background:url(../images/logo.png) no-repeat 50% 50%;
    height: 100px;
    margin:0;
    display: block;
}

.login { 
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*margin: -160px 0 0 -150px;*/
    width:300px;
    z-index:2;
}
.login h1 { color: #fff; text-shadow: 0 0 10px rgba(0,0,0,0.3); letter-spacing:1px; text-align:center; }

.color-white {
    color: white;
}

.result {
    display: flex;
    flex-direction: column;
    width: 295px;
}
.result > div {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}
.result > div > strong {
    margin-right: 1em;
}
.result > div > strong + span {
    display: flex;
    text-align: right;
}

input { 
    width: 100%; 
    margin-bottom: 10px; 
    background: rgba(0,0,0,0.3);
    border: none;
    outline: none;
    padding: 10px 10px 10px 40px;
    font-size: 13px;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3);
    border: 1px solid rgba(0,0,0,0.3);
    border-radius: 3px;
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.2), 0 1px 1px rgba(255,255,255,0.2);
    transition: all .4s ease;
    background-repeat: no-repeat;
    background-position: 9px 50%;
}
input:focus {
    box-shadow: inset 0 -5px 45px rgba(100,100,100,0.4), 0 1px 1px rgba(255,255,255,0.2); 
    background-color: rgba(0, 0, 0, 0.6);
    background-position: 20px 50%;
    padding-left: 60px;
}
input#auth2step::-webkit-input-placeholder,
input#matricula::-webkit-input-placeholder,
input#senha::-webkit-input-placeholder,
input#pin::-webkit-input-placeholder {
    color: grey;
}
input#matricula{
    background-image: url(../images/icon-user.png);
}
input#senha, input#pin{
    background-image: url(../images/icon-key.png);
}
input#auth2step{
    background-image: url(../images/icon-key.png);
}

#progress {
    position: fixed;
    z-index: 2147483647;
    top: 0;
    left: 0px;
    width: 0%;
    height: 2px;
    background: #6eb6de;
    border-radius: 1px;
    transition: width 500ms ease-out, opacity 400ms linear;
}

#progress dd, #progress dt {
    position: absolute;
    top: 0;
    height: 2px;
    box-shadow: #0088CC 1px 0 6px 1px;
    border-radius: 100%;
}

#progress dt {
    opacity: .6;
    width: 180px;
    right: -80px;
    clip: rect(-6px, 90px, 14px, -6px);
}

#progress dd {
    opacity: .6;
    width: 20px;
    right: 0;
    clip: rect(-6px, 22px, 14px, 10px);
}












.dialog{
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    align-items: flex-end;
}
.dialog, .dialog__overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
}
.dialog__overlay{
    position: absolute;
    background: rgba(55, 58, 71, 0.6);
    /*background: rgba(43, 71, 74, 0.69);*/
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-backface-visibility: hidden;
}
.dialog__content {
    width: 680px;
    max-width: 100%;
    background: #fff;
    padding: 4em 1em 6.2em 1em;
    text-align: center;
    position: relative;
    z-index: 5;
    opacity: 0;
    box-shadow: 0 0 70px rgba(0, 0, 0, 0.33);
}
@media only screen and (max-width: 767px){
    .dialog__content {
        width: 90vw;
        margin-bottom: 5vw;
    }
}

.dialog .icon{
    position: absolute;
    left: 0;
    right: 0;
    top: -60px;
    height: 50px;
    margin: 0 auto;
}
.dialog h2 {
    margin: 0;
    font-size: 1.2em;
    font-family: arial;
    font-weight: 400;
}
.dialog button {
    padding: 0.8em 3em;
    outline: none;
    font-weight: 100;
    font-size: 0.9em;
    color: #fff;
    position: relative;
    bottom: 0;
    box-shadow: none;
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
}
.dialog--open .dialog__overlay {
    opacity: 1;
    pointer-events: auto;
}
.dialog.dialog--open .dialog__content {
    animation-name: anim-open;
}
.dialog.dialog--open .dialog__content, .dialog.dialog--close .dialog__content {
    opacity: 1;
    animation-duration: 0.3s;
    animation-fill-mode: forwards;
    transform-origin: 50% 100%;
    animation-timing-function: ease-in-out;
}
.dialog.dialog--close .dialog__content{
    -webkit-animation-name: anim-close;
    animation-name: anim-close;
}
.dialog--open .dialog__content {
    pointer-events: auto;
}
@-webkit-keyframes anim-open {
    0% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg); }
    100% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg); }
}

@keyframes anim-open {
    0% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg); transform: perspective(1000px) rotate3d(1,0,0,90deg); }
    100% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg); transform: perspective(1000px) rotate3d(1,0,0,0deg); }
}
@-webkit-keyframes anim-close {
    0% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg); }
    100% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg); }
}

@keyframes anim-close {
    0% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,0deg); transform: perspective(1000px) rotate3d(1,0,0,0deg); }
    100% { -webkit-transform: perspective(1000px) rotate3d(1,0,0,90deg); transform: perspective(1000px) rotate3d(1,0,0,90deg); }
}