* { box-sizing:border-box; }

body {
	font-family: Helvetica;
	background-image: url("../img/bg-central.jpg");
  -webkit-font-smoothing: antialiased;
  background-repeat: no-repeat;
	background-position: center center;
	background-attachment: fixed;
	background-size: cover;
	margin: 0;
}

hgroup { 
	text-align:center;
	margin-top: 6em;
}

h1, h3 { font-weight: 300 !important; }

h1 { color: #fff !important; }

h3 { color: #fff; }

p { font-size: 10px; }

form {
	width: 380px;
	margin: -2em auto;
	padding: 3em 2em 2em 2em;
}

.group { 
	position: relative; 
	margin-bottom: 20px; 
}

input {
	font-size: 18px;
	padding: 10px 10px 10px 5px;
	-webkit-appearance: none;
	display: block;
	background: none;
	color: #fff;
	width: 100%;
	border: none;
	border-radius: 0;
	border-bottom: 1px solid #fff;
}

input:focus { outline: none; }

/* Label */

label {
	color: #999; 
	font-size: 18px;
	font-weight: normal !important;
	position: absolute;
	pointer-events: none;
	left: 5px;
	top: 10px;
	-webkit-transition:all 0.2s ease;
	transition: all 0.2s ease;
}

/* active */

input:focus ~ label, input.used ~ label {
	top: -20px;
  -webkit-transform: scale(.75);
          transform: scale(.75); left: -2px;
	color: #fff;
}

/* Underline */

.bar {
	position: relative;
	display: block;
	width: 100%;
	color: #fff;
}

.bar:before, .bar:after {
	content: '';
	height: 2px; 
	width: 0;
	bottom: 1px; 
	position: absolute;
	background: #880000; 
	-webkit-transition:all 0.2s ease; 
	transition: all 0.2s ease;
}

.bar:before { left: 50%; }

.bar:after { right: 50%; }

/* active */

input:focus ~ .bar:before, input:focus ~ .bar:after { width: 50%; }

/* Highlight */

.highlight {
	position: absolute;
	height: 60%; 
	width: 100px; 
	top: 25%; 
	left: 0;
	pointer-events: none;
	opacity: 0.5;
}

/* active */

input:focus ~ .highlight {
	-webkit-animation: inputHighlighter 0.3s ease;
	        animation: inputHighlighter 0.3s ease;
}

/* Animations */

@-webkit-keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}

@keyframes inputHighlighter {
	from { background: #4a89dc; }
	to 	{ width: 0; background: transparent; }
}

/* Button */

.button {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  margin: .3em 0 1em 0;
  width: 70%;
  vertical-align: middle;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  text-align: center;
  letter-spacing: 1px;
  background: transparent;
  border-radius: 5px;
  border-color: transparent;
  cursor: pointer;
  left: 15%;
  right: 15%;
  -webkit-transition:all 0.15s ease;
  transition: all 0.15s ease;
}
.button:focus { outline: 0; }

/* Button modifiers */

.buttonBlue {
  background: #1782e6;
  text-shadow: 1px 1px 0 rgba(39, 110, 204, .5);
}

.buttonBlue:hover { background: #357bd8; }

/* Ripples container */

.ripples {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: transparent;
}

/* Ripples circle */

.ripplesCircle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

.ripples.is-active .ripplesCircle {
  -webkit-animation: ripples .4s ease-in;
          animation: ripples .4s ease-in;
}

/* Ripples animation */

@-webkit-keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

@keyframes ripples {
  0% { opacity: 0; }

  25% { opacity: 1; }

  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}

.rows {
    margin-right: 0 !important; 
    margin-left: 0 !important; 
}


footer {
	text-align: center;
	color: #fff;
	margin-right: 0 !important; 
    margin-left: 0 !important; 
    background-color: #880000;
}

#footer .footer-bottom {
    font-size:15px;
    line-height:37px;
    text-align:center;
    background-color:#920303;
    position:relative;
    bottom:0;
    width:100%;
    overflow-x:hidden;
}

.Site {
    display:flex;
    min-height:100vh;
    flex-direction:column
}

.Site-content {
    flex:1
}

.avatar-img{
  width: 7%;
}

.link {
  text-decoration: none;
  color: #fff;
  float: right;
  font-size: 12px;
  margin-bottom: 15px;
}

.link:hover {
  text-decoration: underline;
  color: #8C918F;
}

.link2 {
  text-decoration: none;
  color: #fff;
  float: left;
  font-size: 12px;
}

.link-c {
  text-decoration: none;
  color: #fff;
  font-size: 10px;
}

.link-c:hover {
  text-decoration: underline;
  color: #8C918F;
}

input[type=checkbox] {
    border: 1px solid #fff;
	  border-radius: 5px;
    -webkit-appearance:button;
    color:#FFF;
    white-space: nowrap;
    overflow:hidden;
    padding: 0px;
    width:15px;
    height:15px;
    margin-top: -1px;
}

input[type=checkbox]:checked {
    background-color:red;
    border-right-color:#fff;
}

input[type=checkbox]:hover {
    box-shadow:0px 0px 10px red;
}

.form-login{
	color: #fff;
	font-size: 12px;
}

input {
    font-size: 14px !important;
}


@media(min-width: 1700px){
    .avatar-img{
 		 width: 6%;
	}

	hgroup { 
		text-align:center;
		margin-top: 12em !important;
	}

  .paragrafo {
    font-size: inherit;
  }
}

@media(min-width: 1800px){
    .avatar-img{
 		 width: 6%;
	}

	hgroup { 
		text-align:center;
		margin-top: 14em !important;
	}
}

@media(min-width: 2000px){
    .avatar-img{
 		 width: 5%;
	}

	hgroup { 
		text-align:center;
		margin-top: 24em !important;
	}

  .h5, h5 {
    font-size: 22px !important;
  }

  .fa-3x {
    font-size: 5em !important;
  }

  .paragrafo {
    font-size: large !important;
  }

}

@media(min-width: 2700px){
    .avatar-img{
 		 width: 4%;
	}

	hgroup { 
		text-align:center;
		margin-top: 24em !important;
	}
}

/*adicionado bootstrap */

input[type=checkbox], input[type=radio] {
    margin: 0px 2px 2px !important;
}

.vetor{
	width: 100%;
  margin-top: 1%;
}

.icon-footer{
  color: #620202;
  margin-top: -30px;
}

.titulo-t{
  color: #2d0303;
}

.paragrafo{
  margin-left: 0px;
  line-height: initial;
  margin-top: -10px;
  z-index: 20;
}

.table-tamanho{
  width: 100%;
}

.alert-show{
  width: 50%;
  margin: auto;
}

/* firefox */

@-moz-document url-prefix() {

    .vetor{
      width: 100%;
      margin-top: 2%;
    }

    input:required {
      box-shadow:none;
    }

    @media(min-width: 1000px){
      .vetor{
        width: 100%;
        margin-top: 4%;
      }
    }

    @media(min-width: 1200px){
      .vetor{
        width: 100%;
        margin-top: 3%;
      }
    }

    @media(min-width: 1400px){
      .vetor{
        width: 100%;
        margin-top: 1%;
      }

      input[type=checkbox] {
        transform: scale(0.8) !important;
      }

      input[type="checkbox"], input[type="radio"] {
          margin: -1px 2px 2px !important;
      }

    }

    @media(min-width: 1600px){
      .vetor{
        width: 100%;
        margin-top: 1%;
      }
    }

    @media(min-width: 1800px){

      input[type=checkbox] {
        transform: scale(0.5) !important;
      }

      input[type="checkbox"], input[type="radio"] {
          margin: -4px 2px 2px !important;
      }
    }

     @media(min-width: 2000px){
      
      .link-c {
        color: #fff;
        font-size: 14px;
        text-decoration: none;
      }

      input[type="checkbox"], input[type="radio"] {
          margin: -8px 2px 2px !important;
      }

    }

}