* {
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box;
  }

  body {
    display: flex;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    margin: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #F0F2F5 ;
    background: url('../images/bg.png') no-repeat 0px -120px;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -webkit-font-smoothing: antialiased;

  }

  body, input, button {
    font: 16px "Poppins", sans-serif;
  }

  a{
    width: 150px;
    background: #2196f3;
    color: #fff;
    border: 0;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: 0.2s;
    margin-top: 30px;
  }

  a:hover{
    opacity: 0.4;
    background-color: rgb(244 67 54);
  }

  button{
    background: #2196f3;
    color: #fff;
    border: 0;
    padding: 10px 15px;
    cursor: pointer;
    margin-top: 15px;
    font-weight: bold;
    font-size: 14px;
    max-width: 300px;
    width: 200px;
  }

  form{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    max-width: 700px;
    padding: 30px;
    margin-top: 10px;
    border-radius: 5%;
  }
  
  form input{
    margin-top: 5px;
    
  }
  
  form label{
    display: inline-grid;
    justify-content: space-between;
    margin-top: 5px;
  }

h1{
  font-size: 30px;
  text-align: center;
  color: #2196f3;
  opacity: 1;
  margin-bottom: 10px;
}

#voucher-container{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}

#voucher-card{
  display: none;
  margin-top: 20px;
  max-width: 300px;
  background-color: rgb(158 158 158 / 0.2);
  padding: 30px;
  border: solid 1px rgb(158 158 158 / 0.3);
  font-weight: bold;
  font-size: 30px;
  color: #2196f3;
}


.popup-wrapper{
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgb(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.popup{
  text-align: center;
  width: 100%;
  max-width: 300px;
  margin: 10% auto;
  padding: 20px;
  background-color: white;
  border-radius: 2%;
  position: relative;
}

.popup-close{
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  
}

.popup-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

form[id="form-login"]{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  max-width: 700px;
  padding: 30px;
  margin-top: 10px;
  background-color: transparent;
}

input, select{
  border-color: transparent;
  border-radius: 2%;
  text-align: center;
  padding: 10px;
  background-color: #e4e2e2;
  width: 200px;
  max-width: 300px;
}

.list-vouchers{
  display: none;
}

select:required:invalid {
  color: #666;
}

option[value=""][disabled] {
  display: none;
}

option {
  color: #000;
}

.shadown-div{
  background-color: rgb(0 0 0 / .7);
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.bg-write{
  display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 415px;
    max-width: 700px;
    padding: 60px;
    background-color: white;
    border-radius: 2%;
    position: relative;
}

form[id="form-upload"] > input{
  width: 400px; 
}

progress{
  display: none;
}

.active-voucher{
  color: rgb(255, 152, 0);
}


.displaysVoucherOnScreen{
  display: flex;
  color: #2196f3;
}

