/* 
    D Nicodemo Zilli Vzq 
    19 de abril de 2023
    v1.0
*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

.content{
    width: 100vw;
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
} 

.inputs{
    background-color: #cecece;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

.inputs h1{
    margin-bottom: 50px;
}

.inputs label{
    font-size: 20px;
    margin-bottom: 10px;
}

.inputs .radios{
    display: flex;
    align-items: center;
    justify-content: center;
}

.outputs{
    background-color: #7b7878;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
}

.input{
    width: 350px;
    height: 55px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 18px;
    background-color: white;
    border-radius: 10px;
    text-align: center;
}
.divCs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    
}

.inputC{
    width: 175px;
    height: 55px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: white;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
}

.btnadd {
    background-color: #2980B9;
    border: none;
    border-radius: 10px;
    color: #fff;
    width: auto;
    padding: 10px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 5px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
  }
  .btnadd:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    background-color: #1ABC9C;
  }

  #qrview{
    min-width: 350px;
    max-width: 350px;
    min-height: 350px;
    max-height: 350px;
    border-radius: 10px;
    margin: 10px;
    display: none;
  }
  #btndownload{
    display: none;
  }
  #btndownloadSVG{
    display: none;
  }

  .copy{
    display: block;
    position: fixed;
    float: left;
    bottom: 0;
    margin: 0;
    text-align: left;
  }