

.container-master {
    background-image: url(../images/rand/back-login5.jpg);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card1 {
    background-color: white;
    width: 40%;
    height: 88%;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.btn {
    width: 60%;
}

.formulario {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    height: 100%;
    position: relative;
    padding-top: 180px;
}

.column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.separador {
    width: 92%;
    padding: 20px;
    cursor: pointer;
    border-radius: 15px;
    outline: none;
    border: none;
    background-color: rgb(240, 240, 240);
}

select {
    -webkit-appearance:button !important;
        -moz-appearance:button !important;
            appearance:button !important;
    cursor: pointer;
}


.numcar {
    width: 92%;
    padding: 20px;
    border-radius: 15px;
    outline: none;
    border: none;
    background-color: rgb(240, 240, 240);
}

.botao {
    width: 92%;
    padding: 20px;
    border-radius: 15px;
    background-color: #471ce6;
    color: white;
    border: none;
}

.botao:hover {
    background-color: #2a1185;
    color: white;

}

.botao2 {
    width: 92%;
    padding: 20px;
    border-radius: 15px;
}

.fork {
    border: 2px solid white;
    position: absolute;
    top: 84px;
    padding: 10px;
    border-radius: 15px;
    font-size: 48px;
    font-weight: 700;
    color: #471ce6;
    outline: dotted;
}

select {
    -webkit-appearance: none;  /* Remover o estilo padrão do Chrome/Safari */
    -moz-appearance: none;     /* Remover o estilo padrão do Firefox */
    appearance: none !important;          /* Remover o estilo padrão para a especificação padrão */
    background-image: url('../images/icones/angulo-pequeno-para-baixo.png');
    background-size: 32px;
    background-repeat: no-repeat;
    background-position: right center; /* Posiciona a imagem de fundo à direita e centralizada verticalmente */
    border: 1px solid #000; /* Exemplo de borda, ajuste como desejar */
    outline: none; /* Remove o contorno */
  }
  
  /* Adicionar estilos para IE10+ para a seta de dropdown */
  select::-ms-expand {
    display: none; /* Remove a seta padrão no IE */
  }


  select:hover {
    outline: none;
    border: none;
    appearance: none;
  }