/* #################### SUB TITULO #################### */

 html
  {
    height:100%; /* Le permite al navegador calcular el alto total */
    overflow:hidden; /* Evita que aparezcan barras de scroll al hacer
    la ventana muy pequeña */
  }
  body
  {
    margin:0px; padding:0px;
  }
  #capa_1log
  {
    width:271px;
    height:86px;
    border-radius:10px 10px 0px 0px;
    /*fondo*/
    /*background: rgba(43,43,43,1);*/
    background: #173E61; /* Old browsers */
    /*background: -moz-linear-gradient(top,  #2a84d3 0%, #2d3c54 100%); /* FF3.6+ */
    /*background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2a84d3), color-stop(100%,#2d3c54)); /* Chrome,Safari4+ */
    /*background: -webkit-linear-gradient(top,  #2a84d3 0%,#2d3c54 100%); /* Chrome10+,Safari5.1+ */
    /*background: -o-linear-gradient(top,  #2a84d3 0%,#2d3c54 100%); /* Opera 11.10+ */
    /*background: -ms-linear-gradient(top,  #2a84d3 0%,#2d3c54 100%); /* IE10+ */
    /*background: linear-gradient(to bottom,  #2a84d3 0%,#2d3c54 100%); /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2a84d3', endColorstr='#2d3c54',GradientType=0 ); /* IE6-9 */


    color:white;
    vertical-align:middle;
    text-align:center; 
    padding:5px 0px 0px 0px;

    /*box-shadow:10px 0px 10px 5px black;*/
    
    /*border:solid white 1px;*/
  }
  #capa_2log
  {
    width:250px;
    height: 164px;
    border-radius:0px 0px 10px 10px;
    background:rgba(139,139,139,0.25);    
    padding: 10px 10px 10px 10px;
    vertical-align:middle;
    text-align:center; 
    /*border:solid white 1px;*/
    /*box-shadow:10px 10px 10px 5px black;*/
 
  }
  #gen
  {
    /*border-radius:10px 10px 10px 10px;
    box-shadow:7px 4px 5px rgba(22,19,19,0.80);*/
    position:absolute;    
    top:50%;
    left: 50%;
    margin-top:-150;
    margin-left:-135;
  }
  .ingresos
  {
    border-radius: 10px 10px 10px 10px;
    padding: 5px 5px;
    width:212px;
    background:rgba(0,0,0,0.25);
    border:none;
    color:white;
    text-align: center;
    font-style: italic;

  }
  .boton
  {
    border-radius: 10px 10px 10px 10px;
    padding: 5px 5px;
    width:142px;
    background:rgb(255,255,255);
    border:none;
    color:black;
    text-align: center;

  }
  .alrededor
  {
    padding: 10px 10px 10px 10px;
  }
  .mensajez
  {
    padding: 10px 10px 10px 10px;
    color:white; 
    text-align:center;
    font-style:italic;
  }

  hr
  {
    /*background: rgba(255,255,255,0.25);*/
    background-color: rgba(255,255,255,0.25);
    height: 1px;
    width: 239px;
    border:none;
  }
  #todo
  {
    position: absolute;
    background-color:#067;
    width:100%;
    height:100%;
    z-index: -1;
  }

  /*estilos de popup*/

   #reset{
    text-decoration: none;
    color: white;
    font-family: Arial, helvetica,sans-serif;
    font-size: 14px;
  }
  #reset:hover{
    color: yellow;
  }

  /*custom font*/
  @import url(https://fonts.googleapis.com/css?family=Montserrat);

  /*basic reset*/
  * {
      margin: 0;
      padding: 0;
  }

  html {
      height: 100%;
      /*background: #6441A5; /* fallback for old browsers */
      /*background: -webkit-linear-gradient(to left, #6441A5, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
      background: white;
      background: -webkit-linear-gradient(to left, white, #2a0845); /* Chrome 10-25, Safari 5.1-6 */
  }

  body {
      font-family: montserrat, arial, verdana;
      background: transparent;
  }

  /*form styles*/
  #msform {
      text-align: center;
      position: relative;
      margin-top: 30px;
  }

  #msform fieldset {
      background: white;
      border: 0 none;
      border-radius: 0px;
      box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
      padding: 20px 30px;
      box-sizing: border-box;
      width: 80%;
      margin: 0 10%;

      /*stacking fieldsets above each other*/
      position: relative;
  }

  /*Hide all except first fieldset*/
  #msform fieldset:not(:first-of-type) {
      display: none;
  }

  /*inputs*/
  #msform input, #msform textarea {
      padding: 15px;
      border: 1px solid #ccc;
      border-radius: 0px;
      margin-bottom: 10px;
      width: 100%;
      box-sizing: border-box;
      font-family: montserrat;
      color: #2C3E50;
      font-size: 13px;
  }

  #msform input:focus, #msform textarea:focus {
      -moz-box-shadow: none !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      border: 1px solid #2b78ad;
      outline-width: 0;
      transition: All 0.5s ease-in;
      -webkit-transition: All 0.5s ease-in;
      -moz-transition: All 0.5s ease-in;
      -o-transition: All 0.5s ease-in;
  }

  /*buttons*/
  #msform .action-button {
      width: 100px;
      background: #2b78ad;
      font-weight: bold;
      color: white;
      border: 0 none;
      border-radius: 25px;
      cursor: pointer;
      padding: 10px 5px;
      margin: 10px 5px;
  }

  #msform .action-button:hover, #msform .action-button:focus {
      box-shadow: 0 0 0 2px white, 0 0 0 3px #2b78ad;
  }

  #msform .action-button-previous {
      width: 100px;
      background: #C5C5F1;
      font-weight: bold;
      color: white;
      border: 0 none;
      border-radius: 25px;
      cursor: pointer;
      padding: 10px 5px;
      margin: 10px 5px;
  }

  #msform .action-button-previous:hover, #msform .action-button-previous:focus {
      box-shadow: 0 0 0 2px white, 0 0 0 3px #C5C5F1;
  }

  /*headings*/
  .fs-title {
      font-size: 18px;
      text-transform: uppercase;
      color: #2C3E50;
      margin-bottom: 10px;
      letter-spacing: 2px;
      font-weight: bold;
  }

  .fs-subtitle {
      font-weight: bold;
      font-size: 14px;
      color: #666;
      margin-bottom: 20px; 
       
  }
  .fs-label{
      font-weight: bold;
      font-size: 14px;
      color: #666;
      margin-bottom: 20px; 
      letter-spacing: 1px;  
      text-align:left; 
  }

  /*progressbar*/
  #progressbar {
      margin-bottom: 30px;
      overflow: hidden;
      /*CSS counters to number the steps*/
      counter-reset: step;
  }

  #progressbar li {
      list-style-type: none;
      color: white;
      text-transform: uppercase;
      font-size: 9px;
      width: 24.33%;
      float: left;
      position: relative;
      letter-spacing: 1px;
  }

  #progressbar li:before {
      content: counter(step);
      counter-increment: step;
      width: 24px;
      height: 24px;
      line-height: 26px;
      display: block;
      font-size: 12px;
      color: #333;
      background: white;
      border-radius: 25px;
      margin: 0 auto 10px auto;
  }

  /*progressbar connectors*/
  #progressbar li:after {
      content: '';
      width: 100%;
      height: 2px;
      background: white;
      position: absolute;
      left: -50%;
      top: 9px;
      z-index: -1; /*put it behind the numbers*/
  }

  #progressbar li:first-child:after {
      /*connector not needed before the first step*/
      content: none;
  }

  /*marking active/completed steps green*/
  /*The number of the step and the connector before it = green*/
  #progressbar li.active:before, #progressbar li.active:after {
      background: #2b78ad;
      color: white;
  }

  /* Not relevant to this form */
  .dme_link {
      margin-top: 30px;
      text-align: center;
  }
  .dme_link a {
      background: #FFF;
      font-weight: bold;
      color: #2b78ad;
      border: 0 none;
      border-radius: 25px;
      cursor: pointer;
      padding: 5px 25px;
      font-size: 12px;
  }

  .dme_link a:hover, .dme_link a:focus {
      background: #C5C5F1;
      text-decoration: none;
  }

  #progressbar li{
    color: black;
  }
  #correo,#generado,#dni{
    text-transform:uppercase;
  }

  .notificacion {
    font-size:12px; 
    color:red;
  }

  #anuncio{
    color:#2b78ad; 
    text-align:justify; 
    font-weight:bold; 
    font-size:12px;
  }

  #imgCapcha{
    position: relative; 
    top:19px; 
    left:100px;
  }

  #aviso1{
    background: #f3f3b5;
    padding: 12px;
    margin: 5px;
    text-align: left;
  } 
  
  .aviso2{    
    font-size: 14px;
    padding: 7px;
    text-align: center;
    font-weight: bold;
  }
