body {
  background: #e9e9e9;
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

header{
    background: #ee174e;
    padding: 10px;
}

header .logo{
    width: 100px;
}
header .titulo{
    text-align: right;
    font-size: 20px;
    font-weight: bold;  /* Para el titulo esq sup derecha */
    right: 40px;
    position: relative;
    top: 15px;
    color: #fff;
    float: right;
}
header .subtitulo{
    text-align: right;
    font-size: 9px;
    font-weight: 300;
    position: relative;
    top: 1px;
    color: #fff;
    float: right;
}

header .logo,
header .titulo{
    vertical-align: middle;
    display: inline-block;
}

.contenedor-principal{
    text-align: center;
    position: relative;
    top: 70px;
}

.copyright{
    top: 15px;
    position: relative;
    font-style: italic;
    color: #a5a5a5;
}

.contenedor-forma {
  /*font-weight: bold;  /* Para los links */ 
  background: #ffffff;
  max-width: 420px;
  height: 100%;
  width: 100%;
  border-top: 5px solid #ee174e;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  font-size: 16px   /* Para el tamanio de letra del link a la otra pagina */
}
.contenedor-forma .forma{
  padding: 20px 40px 25px 40px;
}
.contenedor-forma h2 {
  margin: 0 0 30px;  /* Margen inferior de los h2 */
  color: #ee174e;
  font-size: 18px;
  font-weight: 300;  /* Para el titulo Login */
  line-height: 1;
}

.contenedor-forma h1 {
  margin: 0 0 20px;   /* Margen inferior de lo h1 */
  color: #000000;
  font-size: 16px;
  font-weight: 300;  /* Para el titulo abajo de Login */
  line-height: 1;
}

.contenedor-forma input {
  outline: none;
  display: block;
  width: 100%;
  border: 1px solid #d9d9d9;
  margin: 0 0 20px;
  padding: 10px 15px;
  box-sizing: border-box;
  font-weight: 400;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.contenedor-forma input:focus {
  border: 1px solid #ee174e;
  color: #333333;
}

.contenedor-forma .boton-eleccion{
  display: inline-block;
}

.contenedor-forma .selecciona{
    display: block;
    margin: 10px 10px 30px 10px;
}

.contenedor-forma button {
  cursor: pointer;
  background: #ee174e;
  width: 100%;
  height: 35px;
  border: 0;
  padding: 5px 5px 5px 5px;   /* Para controlar el margen vertical del texto 'Access */
  color: #ffffff;
  font-size: 14px;
  font-weight: 100;
  -webkit-transition: 0.3s ease;
  text-align: center;
  transition: 0.3s ease;
  -webkit-box-shadow: inset 0 -2px #cc1543;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
  box-shadow: inset 0 -2px #cc1543;
  margin-top: 10px;  /* Para bajar/subir el boton */
  margin-bottom: 25px;  /* Para bajar/subir el link a la otra pantalla */
  display: inline-block;
  border-radius: 5px;
}
.contenedor-forma button:active {
  top: 1px;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.contenedor-forma button:focus{
  outline: none;
}

.contenedor-forma button:hover {
  background: #cc1543;
}

.errorlist li{
    background: #FFD33B;
    padding: 16px;
    border: 1px solid #e2bb35;
    margin: 10px 0px 28px 0px;
    border-radius: 4px;
    font-size: 12px;
}

.contenedor-forma label{
  /*font-weight: bold;  /* Para las etiquetas */
  padding: 10px
}