html {
    background: url(../../assets/img/bgatenas.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position-y:0;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
}

body{
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
img{
    display: block;
    margin: auto;
    width: 100%;
    height: auto;
  }
  
  #login-button{
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px;
    margin: auto;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(3,3,3,.8);
    overflow: hidden;
    opacity: 0.4;
    box-shadow: 1px 1px 15px #000;
  }
  
  /* Login container */
  #container{
    position: absolute;
    top: calc(5vh + 10px);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 300px;
    height: 300px;

    border-radius: 0.4em;
    background: rgba(3,3,3,0.25);
    /* box-shadow: 1px 1px 50px #000; */
    box-shadow: 9px 14px 29px -10px #000000b0;
    /* display: none; */
    padding: 25px 5px 0px;
  }
  
  .close-btn{
    position: absolute;
    cursor: pointer;
      font-family: 'Source Sans Pro';
    line-height: 18px;
    top: 3px;
    right: 3px;
    width: 20px;
    height: 20px;
    text-align: center;
    border-radius: 10px;
    opacity: .2;
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  
  .close-btn:hover{
    opacity: .5;
  }
  
  /* Heading */
  h1{
    font-family: 'Source Sans Pro';
    position: relative;
    margin: 0px;
    text-align: center;
    font-size: 37px;
    color: #ddd;
    text-shadow: 3px 3px 10px #000;
    font-weight: 500;
  }
  /* Inputs */
  a, input{
    font-family: 'Source Sans Pro';
    text-decoration: none;
    position: relative;
    width: 80%;
    display: block;
    margin: 9px auto;
    font-size: 17px;
    color: #fff;
    padding: 8px;
    border-radius: 0.4em;
    border: none;
    background: rgba(3,3,3,.1);
    -webkit-transition: all 2s ease-in-out;
    -moz-transition: all 2s ease-in-out;
    -o-transition: all 2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }
  input{
    margin-bottom: 0;
  }
  input:focus{
    outline: none;
    box-shadow: 3px 3px 10px #333;
    background: rgba(3,3,3,.18);
  }
  /* Placeholders */
  ::-webkit-input-placeholder {
     color: #ddd;  }
  :-moz-placeholder { /* Firefox 18- */
     color: #ddd;  }
  ::-moz-placeholder {  /* Firefox 19+ */
     color: #ddd;  }
  :-ms-input-placeholder {
     color: #333;  }
  
  /* formulario */
  #quickForm{
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly
  }
  #quickForm span{
    color:#fff;
    margin: 0;
    font-size: 11px;
    text-align: left;
    margin-left: 30px;
  }
  #buttonIngresar{
    width: 50%;
    transform: translate(50%, 0px);
    font-family: 'Source Sans Pro';
    text-align: center;
    padding: 4px 8px;
    background: #2FAC6A;
    border-radius: 0.4em;
    box-shadow: none;
    border: none;
    color: #ffff;
  }
  #buttonIngresar:hover{
    background:#2a955d
  }
  a:hover{
    opacity: 0.7;
  }
