/* BASIC */
html {
  background-color: #f6f6f6;
}

/* EVITA QUE UM CURSOS FIQUE PISCANDO EM AREAS QUE NÃO DEVERIA */
/* Desativa a seleção de texto em elementos específicos */
body, .wrapper, .formContent {
  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;
}

/* Remove o cursor em áreas indesejadas */
.formContent img, .formContent input {
  outline: none;
  /* Remove o contorno do cursor em inputs e imagens */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-image: url('../imagens/login/horizontal.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #7B2E64;
}

a {
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
}

h2 {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  margin: 40px 8px 10px 8px;
  color: #cccccc;
}

/* STRUCTURE */

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

.formContent {
  max-width: 450px;
  position: relative;
  text-align: center;
}

#formFooter {
  padding: 5px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

#formFooter2 {
  font-size: 13px;
  padding: 15px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}

/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
}

.text-black {
  color: #0d0d0d;
}

/* FORM TYPOGRAPHY*/

input[type=button], input[type=submit], input[type=reset] {
  background-color: #ffffff;
  width: 85%;
  border: none;
  color: #7B2E64;
  padding: 5px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 14px;
  -webkit-border-radius: 30px 30px 30px 30px;
  border-radius: 30px 30px 30px 30px;
  margin: 5px 20px 0px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

input[type=button]:active, input[type=submit]:active, input[type=reset]:active {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  background-color: #f570cd;
}

input[type=text], input[type=password] {
  background-color: transparent !important;
  border: none;
  color: #ffffff;
  padding: 5px 32px;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 30px 30px 30px 30px;
  border-radius: 30px 30px 30px 30px;
  border: #ffffff solid 1px;
}

/*REMOVE AS CORES DE PREENCHIMENTO AUTOMÁTICO DOS INPUTS*/
input:-webkit-autofill {
  transition-delay: 3600s;
}

input[type=text]:focus, input[type=password]:focus {
  background-color: #ffffffc5;
}

input::placeholder {
  color: #ffffff77;
  /* Altere a cor aqui */
}

/* ANIMATIONS */
/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-moz-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn ease-in 1;
  -moz-animation: fadeIn ease-in 1;
  animation: fadeIn ease-in 1;

  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  animation-fill-mode: forwards;

  -webkit-animation-duration: 0.2s;
  -moz-animation-duration: 0.2s;
  animation-duration: 0.2s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  animation-delay: 0.2;
}

.fadeIn.second {
  -webkit-animation-delay: 0.3s;
  -moz-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover {
  width: 85%;
  padding: 2px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  -webkit-border-radius: 30px 30px 30px 30px;
  border-radius: 30px 30px 30px 30px;
  margin: 10px 20px 0px 20px;
  border: #ffffff solid 1px;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #f570cd;
}

.underlineHover:hover:after {
  width: 100%;
}

.underlineHover2 {
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  margin-top: 10px;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover2:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  content: "";
  transition: width 0.2s;
}

.underlineHover2:hover {
  color: #f570cd;
}

.underlineHover2:hover:after {
  width: 100%;
}

/* OTHERS */

*:focus {
  outline: none;
}

#icon {
  position: relative;
  width: 100%;

  margin-top: -140px;
}

#icon-admin {
  position: relative;
  width: 50% !important;
  margin-bottom: 50px;
}

.form1 {
  margin-top: -40px;
}

/*coloca fundo na modal*/
#modal-cadastrar .modal-content,
#modal-rec .modal-content {
  background-color: #7C2E64;
  color: white;
}

/*estiliza o toast*/
.toast {
  min-width: 330px;
  /* Define a largura mínima */
}

/*texto da página sem acesso*/
.texto-acesso {
  background-color: #fc86d9cb;
  color: #7B2E64;
  font-size: 14;
  padding: 10px;
  margin-top: -150px;
  margin-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  position: relative;
  border-radius: 2rem;
}

/*arredonda as bordas dos campos com select2*/
.select2-container--default .select2-selection--single {
  border-radius: 20px;
  min-height: 35px;
  background-color: transparent !important;
}

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

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  line-height: 37px;
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #fff;
}

/* deixa os select2 com 85%*/
.select2 {
  width: 85% !important;
}

.select2-dropdown {
    background-color: #7B2E64;
}

/* define a cor do item selecionado no select2*/
.select2-container--default .select2-purple .select2-results__option--highlighted[aria-selected], .select2-container--default .select2-purple .select2-results__option--highlighted[aria-selected]:hover, .select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected], .select2-purple .select2-container--default .select2-results__option--highlighted[aria-selected]:hover {
  background-color: #fc9ddf;
  color: #7B2E64;
}

.back-form {
background-color: #7B2E64;
padding-top: 20px;
padding-bottom: 20px;
}