body {font-family: Arial, Helvetica, sans-serif;
background-color:#094779;
padding: 0;
margin: 0;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
user-select: none;
}

canvas {
    position: relative;
    top: 0;
    left: 0;
}

p {color:rgb(255, 0, 0);
text-align: center;
font-size: 35px;
font-weight: bold;
}

h1 {color:white;
margin-left:10px;
}

.idlog {margin-left:10px;
float: left;
}

/*.logo_ini {
    position: relative;
    width: 100%;
    max-width: 400px;
	background-color: blue;
	margin: auto;
}

.logo_iini img {
    width: auto;
    height: auto;
}*/

/* Campos de entrada com largura total */
input[type=text], input[type=password], input[type=email] {
    width: 100%;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Seta um estilo para todos os botões */
button {
    background-color: #4CAF50;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
}

button:hover {
    opacity: 0.8;
}

/* Estilo extra para o botão Cancela */
.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

/* Estilo extra para os botões link de retorno e email*/
.cancelbtn2{
	color: green;
    width: auto;
    padding: 10px 18px;
    background-color: #f1f1f1;
	float: right;
}

/* Centraliza a imagem e posiciona o botão de fechar X */
.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.avatar {
    width: 30%;
    border-radius: 30%;
}

.container {
    padding: 10px;
}

span.psw {
    float: right;
    padding-top: 16px;
}

/* A tela modal (background) */
.modal {
    display: none; /* Oculto por padrão */
    position: fixed; /* Fixo */
    z-index: 1; /* Assentado ao topo */
    left: 0;
    top: 0;
    width: 100%; /* Largura total */
    height: 100%; /* Altura total */
    overflow: auto; /* Habilita barra lateral se preciso */
    background-color: rgb(0,0,0); /* Cor retornada */
    background-color: rgba(0,0,0,0.4); /* Preto com opacidade */
    padding-top: 60px;
}

/* Conteúdo modal mobile */
.modal-content {
    background-color: #fefefe;
    margin: 5% 25% 15% 25%; /* 5% do topo, 15% de baixo e centrado */
    border: 1px solid #888;
    width: auto; /* Pode ser mais ou menos, depende do tamanho da tela */
}

/* Botão fechar (x) */
.close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #000;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: red;
    cursor: pointer;
}

/* Adiciona animação de zoom */
.animate {
    -moz-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {-webkit: scale(0)} 
    to {-webkit: scale(1)}
}
    
@keyframes animatezoom {
    from {transform: scale(0)} 
    to {transform: scale(1)}
}

/* Muda o estilo para span e cancela botões extras para telas pequenas */
@media screen and (max-width: 300px) {
    span.psw {
       display: block;
       float: none;
    }
    .cancelbtn {
       width: 100%;
    }
}