 @import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=WDXL+Lubrifont+SC&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-image: url(../images/background.jpg);
  background-size: cover;
}

main {
  display: flex;
  height: 100vh;
  width: 100%;
  justify-content: center;
  align-items: center;
}

form {
  
  width: 700px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  box-shadow: 3px 3px 3px 2px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  
}

#conteiner_one,
#conteiner_two {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#conteiner_one p{
    margin-top: 3px;
    display: none;
}
.two_inter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#ct {
  width: 270px;
  height: 40px;
  margin-bottom: 25px;
  outline: none;
  box-shadow: 3px 3px 3px 2px rgba(0, 0, 0, 0.2);
  border: none;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  background-color: #fff;
  font-size: 20px;
}

.two_inter span input[type="button"], #modal button{
  width: 65px;
  height: 30px;
  margin: 5px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  border: none;
  border-radius: 5px;
  box-shadow: 3px 3px 3px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

#btnNulo {
  background-color: #615c5c;
  color: #fff;
}

#vermelho {
  background-color: #f90303;
  color: #fff;
}

#btnConfirmar {
  background-color: #18f604;
  color: #fff;
}

#zero {
  margin: 0 36%;
}

#voto {
  visibility: hidden;
}
#modal{
    display:none; 
    position:fixed;
     top:0;
      left:0;
       width:100%;
        height:100%;
         background-color:rgba(0,0,0,0.5);
          justify-content:center; align-items:center;
          font-size: 17px;
          
  font-family: "Bebas Neue", sans-serif;
  font-weight: 200;
}

#candidato{
    width: 200px;
    border-radius: 5px;
    display: none;
}
@media (max-width: 768px) {
  form {
    width: 90%;
    height: auto;
    flex-direction: column;
    padding: 20px;
    margin:0 10px;
  }

  #conteiner_one,
  #conteiner_two {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  #candidato,
  #logo {
    width: 150px;
  }

  #ct {
    min-width: 300px;
    font-size: 18px;
  }

  .two_inter span {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .two_inter span input[type="button"] {
    width: 60px;
    height: 30px;
    margin: 5px;
    font-size: 14px;
  }

  #zero {
    margin: 0 auto;
  }

  #modal {
    font-size: 16px;
    padding: 10px;
  }

  #modal button {
    width: 100px;
    height: 35px;
    font-size: 14px;
  }
}