@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* CSS adicional para alinhar os elementos no centro */
body {
  background-color: #333333 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.form-container {
  background-color: #dadada;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  width: 60%;
  height: 100vh;
}

.btn-primary {
  margin-top: 10px;
  color: white;
  background-color: #333333 !important;
  border: none !important;
  transition: .8s ease-in-out !important;
  padding: 12px 0;
  font-weight: 600;
}

.btn-primary:hover {
  color: #333333 !important;
  background-color: #f7d935 !important;
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
  border: none;
  outline: none;
  box-shadow: none;
  background-color: #7133d3 !important;
}

.btn-primary.focus,
.btn-primary:focus {
  box-shadow: none !;
  border: none;
}

h1.text-center {
  font-size: 30px;
  font-weight: 700;
  color: #333333;
}

.form-label {
  font-size: 15px;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../images/select-angle-down.png) no-repeat center right #FFF;
  border: 1px solid #333;
  font-size: 15px;
  padding-right: 20px;
  margin-bottom: 10px;
}

select:hover {
  cursor: pointer;
}
