

.container{
    
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    width: 90vw;
    margin-top: 4em;
}

.container_logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #335A25;
    height: 100%;
    width: 50%;
    border-radius: 10px 0 0 10px;

}
.container_logo p {
    color: white;
    font-size: 24px;
}
.container_logo svg {
    width: 364px;
    height: 83px;
}


.container_login {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    background-color: #B8E2A9;
    height: 100%;
    width: 50%;
    border-radius: 0 10px 10px 0;
}
.container_cadastro {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    background-color: #B8E2A9;
    height: 110%;
    width: 50%;
    border-radius: 10px;
}
.container_login div, .container_cadastro div {
    position: relative;
    display: flex;
    justify-content: center;
    width: 300px;

}
.container_cadastro  {
   padding: 18px 0;
}
.container_login div input, .container_cadastro div input{
    display: flex;
    flex: 1;
    height: 3em;
    border-radius: 14px;
    border: none;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25);
    outline: none;
}
.container_login div input {
    padding-left: 10px;
    width: 100%;
    
}


.container_cadastro .container_nome{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    width: 100%;
    height: 80%;
    gap: 10px;
    
}
.container_cadastro .container_nome input{
    height: 1em;
    width: 60%;
    padding-left: 12px;
    
}


.container_login a, .container_cadastro a{
    color: black;
}
.container_login .link, .container_cadastro .link {
    margin: 0.5rem 0;
}

.container_login button, .container_cadastro button{
    padding: 0 5rem;
    height: 3em;
    border-radius: 8px;
    border: none;
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 1s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container_login button:hover, .container_cadastro button:hover {
    background-color: #335A25;
    color: white;
}

.img-user {
    display: none;
    width: 250px;
    height: 300px;
    border-radius: 10px;
    /*object-fit: cover;*/
}

/* votacao */


.num_votos {
    max-width: 100px;
}
.btn-num {
    background-color: #B4B4B4 !important;
    margin: 10px;
    color: white !important;
    font-weight: bold !important;
}

.laranja {
    background-color: #EB5F10 !important;
}
.verde {
    background-color: #3BEB10 !important;
}
.background_form {
    width: 80%;
    background-color: #DFEDDA !important;
}

.btnRetornar {
    background-color: #EB1010 !important;
}
.btnConfirmar {
    background-color: #95B75F !important;
}

/* votacao */

/* update fotos */
.file-input {
    width: 400px;
    height: 250px;
    background-color: #eee;
    display: grid;
    grid-template-areas: "stack";
    border-radius: 8px;

}

.file-input > * {
    grid-area: stack;

}
.file-input > input {
    opacity: 0;
}
.file-input > .drop-zone {
    margin: 12px;
    border: dashed 2px  #aaa;
    border-radius: 4px;
}

.file-input.active > .drop-zone {
    margin: 14px;
    background-color: #19335a;
}



.drop-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 300ms;
    position: relative;
}

.drop-zone p {
    z-index: 99;
    text-shadow: rgba(18, 18, 18, 0.5) 1px 0 20px;
}

.drop-zone img {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    opacity: 0.8;
    transition: opacity 500ms;
    object-fit: cover;

}

.file-input:hover .drop-zone > img{
    opacity: 0.1;
}

/* update fotos */

.grafico_responsivo {
    max-width: 700px;

    width: 95%;
}
@media (max-width: 1200px) {
    .container{
        width: 90%;
    }
    
}
@media (max-width: 850px) {
    .container_login {
        width: 80%;
        border-radius: 8px;
    }
    .container_logo{
        display: none;
    }
    .container_cadastro .container_nome input{
        max-width: 90%;
        
    }
    .container_login button, .container_cadastro button {
        max-width: 90%;
    }
    .container_login div {
        width: 90%;
    }
    .container_cadastro , .container_login div input {
        width: 90%;

    }
    .container_login a, .container_cadastro a {
        margin-bottom: 1em;
    }

    
}