/* Desativa a seleção de texto em elementos específicos */
body, .wrapper {
  user-select: none;
  /* Evita a seleção de elementos */
  -webkit-user-select: none;
  /* Para compatibilidade com navegadores webkit */
  -moz-user-select: none;
  -ms-user-select: none;
}

/*--//responsive-design---*/
@media screen and (max-width: 400px) {
  .card {
    width: 330px;
    min-width: 330px;
  }
}

@media screen and (min-width: 401px) {
  .card {
    width:370px;
    min-width: 370px;
  }
}

@media screen and (min-width: 860px) {
  .card {
    width: 450px;
  }
}

body {
  margin: 0;
  padding: 0;
  background-image: url('../imagens/fundo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

html, body {
  height: 100%;
}

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 100%;
}

.titulo {
  color: #ff36a1;
}

.form-group {
  width: 100%;
  margin-bottom: 0.5rem
}

.card {
  background-color: #fff;
  padding: 20px;
  border: none;
  border-radius: 1rem;
  -webkit-box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.3);
  text-align: center
}

.form-control {
  border: none;
  background-color: #f3f2f2;
  height: 50px;
}

.form-control:focus {
  outline: none;
  /* Remove a borda padrão do navegador */
  background-color: #fdfdfd;
  /* Cor de fundo ao focar */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  /* Adiciona um efeito de sombra */
}


.form-control::placeholder {
  color: #b4b4b4;
}

a {
  color: #EC037F !important;
  font-size: 14px;
  text-decoration: none !important;
  cursor: pointer;
}

a:hover {
  color: #ff36a1;
}

.logo {
  width: 60%;
  margin-bottom: 20px;
}

.btn {
  width: 80%;
  height: 40px;
  outline: none !important;
  background-color: #EC037F;
  color: #fff;
}

.btn:hover {
  background-color:  #D00270;
  text-decoration: none;
  color: #fff;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none
}

select,
.select2-selection--single {
  border: none !important;
  height: 50px !important;
}

/*IMPORTANTISSIMO PARA DEIXAR OS SELECT2 COM 100% DA AREA */
.select2.select2-container {
  width: 100% !important;
}

/*dropdown do select*/
.select2-dropdown {
  background-color: #f3f2f2;
  color: #333;
}

/*ITEM SELECIONADO NO SELECT2*/
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: #ffafdb;
}

/*ao passar o mouse*/
.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background-color: #ffc6e5;
  color: #333;
}

/*esconde todas as barras de rolagem dos select2*/
.select2-container--default ::-webkit-scrollbar {
  display: none !important;
}

.select2-container--default .select2-selection--single,
.select2-selection--multiple {
  height: 37px;
  background-color: #f3f2f2;
}

/*AJUSTA A SETINHA DO SELECT2*/
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 50px;
  width: 30px;
}

/*alinha o texto no centro*/
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  line-height: 50px;
}

.texto-grande {
  font-size: 18px;
}

.texto-pequeno {
  font-size: 13px;
}