@import url(https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700&display=swap);
@font-face {
    font-family: GothamBold;
    src: url(/css/GothamBold.otf);
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0px;
    background: #25282E;
    color: #fff;
    font-family: Poppins,sans-serif;
    font-size: 13px;
    position: relative;
}
form {
    position: absolute;
    display: block;
    max-width: 300px;
    height: 302px;
    width: 100%;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    margin: auto;
}
form img {
    margin: auto;
    display: block;
    margin-bottom: 5px;
}
form span {
    font-family: GothamBold;
    font-size: 25px;
    text-align: center;
    display: block;
}
form p {
    margin: 5px 0px;
    height: 20px;
    color: #f00;
}
form input {
    display:block;
    width: calc(100% - 11px);
    height: 26px;
    padding: 5px;
    font-size: 12px;
    color:#fff;
    background-color:rgba(255,255,255,0.05);
    background-clip: padding-box;
    border:1px solid rgba(255,255,255,0.15);
    border-radius:4px;
    transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out;
    margin: 3px 0px;
}
form input:focus {
    color:#fff;
    background-color:rgba(255,255,255,0.05);
    border-color:#26B4FF;
    outline:0;
    box-shadow:none;
}
form button {
    background: #26B4FF;
    color: #fff;
    border: 0px;
    border-radius: 4px;
    height: 38px;
    width: 82px;
    float: right;
    cursor: pointer;
    outline: none;
    margin-top: 3px;
}
form button:hover {
    background:#24abf2;
}
div.rodape {
	width: calc(100%);
	background: #1C1F24;
	color: #abb0b7;
	display: table;
	height: 35px;
	line-height: 35px;
	text-align: center;
	bottom: 0px;
	position: fixed;
}