/* CSS reset */
*, *:before, *:after { 
    margin:0;
    padding:0;
    font-family: Arial,sans-serif;
  }
  
  body{
    background:#f1f1f1;
    padding:2px ;
  }
  
  #pagnumb {
    color:#fe89b5;
    font-size:medium;
  }

  a{
    text-decoration: none;
  }
  
  /* esconde as ancoras da tela */
  a.links{
    display: none;
  }
  
  /* content que contem os formulários */
  
  .container {
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      align-content: center;
      row-gap: 10px;
      column-gap: 30px;
    }
  
  .content{
    width: 450px;
    margin: 0px auto;
    position: relative; 
  }
  
  /* formatando o cabeçalho dos formulários */
  h2{
    align-items: center;
    font-size: 22px;
    text-align: center;
    color:#fe89b5;
  }
  
  h1{
    font-size: 36px;
    color: #066a75;
    padding: 10px 0;
    font-family: Arial,sans-serif;
    font-weight: bold;
    text-align: center;
    padding-bottom: 15px;
  }
  h1:after{
    content: ' ';
    display: block;
    width: 100%;
    height: 2px;
    margin-top: 10px;
    background: -webkit-linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%); 
    background: linear-gradient(left, rgba(147,184,189,0) 0%,rgba(147,184,189,0.8) 20%,rgba(147,184,189,1) 53%,rgba(147,184,189,0.8) 79%,rgba(147,184,189,0) 100%); 
  }
  
  .imgcapcha{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 59%;
    border-radius: 10px;
    border: 2px ridge #4ab3c6;
  }

  .imgcapcha5{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 94%;
    border-radius: 10px;
    border: 2px ridge #4ab3c6;
  }
 
  p{
    margin-bottom:15px;
  }
  p:first-child{
    margin: 0px;
  }
  .dicas{
    text-align: center;
    align-items: center;
    color: #405c60;
    position: relative;
    margin:0;
    padding:0;
    font-size: 13px;
  }

  .noaccess{
    color: #405c60;
    position: relative;
    margin:0;
    padding:0;
    font-size: 12px;
  }
  
  /**** advanced input styling ****/
  /* placeholder */
  ::-webkit-input-placeholder  {
    color: #bebcbc; 
    font-style: italic;
  }
  input:-moz-placeholder,
  textarea:-moz-placeholder{
    color: #bebcbc;
    font-style: italic;
  } 
  input {
    outline: none;
  }
  
  input:not([type="checkbox"]){
    width: 95%;
    font-size: 11px;
    margin-top: 4px;
    padding: 10px;  
    border: 1px solid #b2b2b2;
    
    -webkit-border-radius: 3px;
    border-radius: 3px;
    
    -webkit-box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
    box-shadow: 0px 1px 4px 0px rgba(168, 168, 168, 0.6) inset;
    
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  

  /*  TABLE CAPTCHA inicio */
  /*  SECTIONS  */
  .section {
    clear: both;
    padding: 0px;
    margin: 0px;
  }

  /*  COLUMN SETUP  */
  .col {
    display: block;
    float:left;
    margin: 0;
  }
  .col:first-child { margin-left: 0; }

  /*  GROUPING  */
  .group:before,
  .group:after { content:""; display:table; }
  .group:after { clear:both;}
  .group { zoom:1; /* For IE 6/7 */ }

    /*  GRID OF THREE  */
  .span_3_of_3 { width: 100%;}

  .span_2_of_3 {
    width: 86%;
    height: 32px;
    text-align: center; 
    display: inline-block;
    vertical-align: middle;
    line-height: 2.5;
  }
  .span_1_of_3 {
    width: 7%;
    height: 32px;
  }

  /*  GO FULL WIDTH BELOW 480 PIXELS */
  @media only screen and (max-width: 480px) {
    .col {  margin: 0; }
    .span_3_of_3, .span_2_of_3, .span_1_of_3 { width: 100%; }
  }
  /*  TABLE CAPTCHA fim  */



  /*estilo do botão submit */
  
  .entrar_voltar{
    width: 100%!important;
    cursor: pointer;  
    background: #3d9db3;
    color: #fff;
    font-size: 12px;  
    border: 1px solid #fff; 
    margin-bottom: 10px;  
    text-shadow: 0 1px 1px #333;    
    -webkit-border-radius: 5px;
    border-radius: 5px;    
    transition: all 0.2s linear;
  }
  .entrar_voltar:hover{
    box-shadow: 0 5px 8px #9e9e9e;    
    background: #41a5bb;
  }
  .entrar_voltar:disabled {
    opacity: .5;
    cursor: default;
    box-shadow: none;
  }
  .entrar_voltar:disabled:hover {
    opacity: .3;
    box-shadow: none;  
  }

  /*marcando os links para mudar de um formulário para outro */
  .onclick{
    position: absolute;
    background: #e1eaeb;
    color: #7f7c7c;
    left: 0px;
    height: 20px;
    width: 440px;
    padding: 17px 30px 20px 30px;
    font-size: 16px;
    text-align: right;
    border-top: 1px solid #dbe5e8;
  
    -webkit-border-radius: 0 0  5px 5px;
    border-radius: 0 0  5px 5px;
  }
  .onclick a {
    font-weight: bold;
    background: #f7f8f1;
    padding: 6px;
    color: rgb(29, 162, 193);
    margin-left: 10px;
    border: 1px solid #cbd518;
  
    -webkit-border-radius: 4px;
    border-radius: 4px;  
  
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s  linear;
  }
  .onclick a:hover {
    color: #39bfd7;
    background: #f7f7f7;
    border: 1px solid #4ab3c6;
  }
  
  /* estilos para para ambos os formulários */
  #cadastro, 
  #login{
    position: absolute;
    top: 0px;
    width: 88%; 
    padding: 18px 6% 25px 6%;
    margin: 0 0 35px 0;
    background: rgb(247, 247, 247);
    border: 1px solid rgba(147, 184, 189,0.8);
    
    -webkit-box-shadow: 5px;
    border-radius: 5px;
    
    -webkit-animation-duration: 0.5s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: both;
  
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-fill-mode: both;
  }
  
  #paracadastro:target ~ .content #cadastro,
  #paralogin:target ~ .content #login{
    z-index: 2;
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  
    -webkit-animation-delay: .1s;
    animation-delay: .1s;
  }
  #registro:target ~ .content #login,
  #paralogin:target ~ .content #cadastro{
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
  }
  
  /*fadeInLeft*/
  @-webkit-keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
  }
  
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-20px);
    }
    100% {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  /*fadeOutLeft*/
  @-webkit-keyframes fadeOutLeft {
    0% {
      opacity: 1;
      -webkit-transform: translateX(0);
    }
    100% {
      opacity: 0;
      -webkit-transform: translateX(-20px);
    }
  }
  
  @keyframes fadeOutLeft {
    0% {
      opacity: 1;
      transform: translateX(0);
    }
    100% {
      opacity: 0;
      transform: translateX(-20px);
    }
  }
  
  /* Abre FOOTER */
  footer {
      position: absolute;
      bottom: 0px;
      width: 100%;
      height: 12%;
      display: flex;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      align-content: center;
      row-gap: 10px;
      column-gap: 30px;
  }
  
  
  .footertexto {
    justify-content: center;
    width: 80%;
    color: rgb(175, 174, 174);
    font-size: 8px;
    font-family: verdana;
    align-items: center;
    text-align: center;
  }
  
  