﻿html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body{
	color:#000000;	
	float:left;
	font-family: Verdana, Geneva, sans-serif;	
	min-height:100%;
	min-width:100%;
	margin:0;
    background-color: #f1f7fc;
}

.container {
    min-height: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    flex-direction: column;
}

.content {
    padding: 20px 0 80px;
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    flex: 1 1 auto;
}

.container .login {
    max-width: 320px;
    width: 60%;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    color: #505e6c;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
}


.container .logo {
    width: 70%;
    max-width: 200px;
    margin: 0 auto;
}

.container .login .linha .erro {
    color: #FF0000;
    font-weight: bold;
    text-align: left;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
}
    
.container .login .linha input {
    background: #f7f9fc;    
    border: 1px solid #dfe7f1;
    border-radius: 3px;
    box-shadow: none;
    outline: none;
    color: inherit;
    text-indent: 8px;
    height: 42px;
    width: 100%;
    margin-bottom: 15px;
}

.container .login .linha input.inputerro
{
    border:2px solid #990000;
}
    
.container .login .linha .enviar, .btProsseguir {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    background-color: #113D68;
    border-color: #113D68;
}

.container .login .linha .enviar:hover, .btProsseguir:hover{
	background: none repeat scroll 0 0 #E0E0E0;
	border:1px solid #666666;
	color:#666666;
}

.ajuda {
    font-size: 12px;
    margin: 10px 0 0;
    display: block;
    color: #113D68;
    text-decoration: none;
}

.ajuda:hover {
    text-decoration: underline;
}


.rodape {
    position: absolute;
    width: 100%;
    bottom: 0;
    background: #113D68;
    color: #FFFFFF;
    height: 50px;
    font-size: 12px;
    text-align: center;
    z-index: 2;
    box-shadow: -1px -2px 20px #0f0f0f;
    -webkit-box-shadow: -1px -2px 20px #0f0f0f;
    -moz-box-shadow: -1px -2px 20px #0f0f0f;
}

.rodape div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.rodape a, .rodape a:visited {
    color: #ffffff;
    text-decoration: none;
}

.rodape a:hover{
	text-decoration:underline;
} 

::-webkit-input-placeholder  { 
    color:#ABABAB; 
}
input:-moz-placeholder { 
    color:#ABABAB; 
}
textarea:-moz-placeholder {
    color: #ABABAB;
}