*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
}
h2{
    color: #599439;
}

section{
    padding: 20px;
}


.navbar {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* Itens nas extremidades */
    color: #599439;
    font-size: 20px;
    padding: 0px 20px;
    gap: 10px;
    text-align: center;
    position: relative;
}

.navbar a {
    color: #599439;
}

.navbar img {
    height: 50px;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: bold;
    color: #599439;
}



.titulo{
    color: #094d12;
    text-align: center;
    padding: 100px 0px;
    font-size: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}























.container{
  
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-around;
    flex-wrap: wrap;
    gap:55px;
   
}

.card {
    background-color: #2bff002c;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 15px; 
    box-shadow: 0px 4px 6px rgba(9, 77, 18, 0.3);
    border-radius: 10px;
}

.img {
    flex: 0 0 40%; 
    display: flex;
    justify-content: center;
    align-items: center;
  
}
.img img {
    border-radius: 50%;
    max-height: 150px;
    border: #094d12 3px solid;
    box-shadow: 0px 8px 15px rgba(9, 77, 18, 0.5);
    width: 150px;
    object-fit: cover; 
}



.infos {
    flex: 0 0 60%; 
    text-align: center;
}

.containerExibir {
    display: flex;
    flex-direction: column;
    gap: 20px;
   
}

.btnEleicao{
    background-color: #094d12;
   
    position: fixed;
    bottom: 20px;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    font-size: 18px;
    border-radius: 25px 0px 0px 25px;
}
.btnEleicao a{
    color: #ffffff;
}


.formVotacao{
    background-color:#8ddd79c0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    height: 75vh;
    border-radius: 20px;
    margin: 30px;
}


.formVotacao input{
    width: 200px;
    border-radius: 20px;
    border: none;
    background-color: #599439;
    font-size: 50px; 
    color: white; 
    padding: 20px;
    text-align: center;
}

.formVotacao  ::placeholder {
    color: white; 
    opacity: 0.5; 
}

.formVotacao label{
    font-size: 25px;
    text-align: center;
    color: #599439;
}

.btnVotar{
    background-color: #094d12;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    font-size: 30px;
    border-radius: 10px;
   

}

.btnVotar:disabled {

    background-color: #ccc;
    cursor: not-allowed; 
    color: #999;
}
.resultado {
    font-size: 20px;
    display: flex;
   
    width: 100%;
    justify-content: center; 
    align-items: center; 
    text-align: center; 
}

.resultado img{
    border-radius: 50%;
}





/* login*/
#container{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color:#599439;
}
#form-container{
    background-color:#094d12c0;
    padding: 30px;
    border-radius: 20px;
}

#form-container h2, label{
    color: #fff;
}
.btn{
   padding: 10px;
    background-color:#094d12;
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    margin: 7px;
    display: flex;
    align-items: center;
  
   
}

.form-index{
    height: 50vh;
    width: 50vw;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
}
.form-index input{
height: 50px;
width: 100%;
border-radius: 10px;
}

.form-index h2{
    text-align: center;
}

#aviso{
    height: 30px;
   
}




.erro{
    color: rgb(180, 26, 26);
    background-color:#79aa5f;
    border-radius: 4px;
    padding: 10px;
    font-weight: bold;
  text-align: center;
}



#olho, #olho2, #olhoIndex{
    background-color: #094d12;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
   padding: 20px;
   border-radius: 0px 10px 10px 0;
   cursor: pointer;
   width: 30px;
   position: absolute;
   right: 0;
   bottom: 0;
   top: 0;
}



.containerInput{
    display: flex;
    background-color: white;
    border-radius: 10px;
   position: relative;
   width: 100%;
   height: 50px;

}

.containerInput input {
    height: 50px;
    padding: 10px;
}

input:focus {
    border: 3px solid #094d12;
    outline: none;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.5);   
}

.tempo {
   
 display: flex;
 align-items: center;
 justify-content: center;
}

.tempo p{
    background-color: #79aa5f;
  border-radius: 20px;
    box-shadow: 0px 4px 6px rgba(9, 77, 18, 0.3);
    padding: 20px;
}