header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #2c3e50;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  margin-top: 50px;
  padding: 60px 30px;
  text-align: center;
  background: linear-gradient(to right, #3498db, #9b59b6);
  color: white;
}

.hero h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.hero button {
  padding: 15px 30px;
  font-size: 1em;
  background-color: #ffffff;
  color: #2c3e50;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.form-section {
  padding: 40px 30px;
  background-color: #ffffff;
  max-width: 600px;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.form-section h2 {
  margin-bottom: 20px;
  text-align: center;
}

form input, form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #2c3e50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 00px;
}

#btnSideBar {
	color:white;
	border:none;
	background-color:#2c3e50;
}

.input-group {
  position: relative;
  width: 100%;
  margin-bottom: 15px;
}

.input-group input {
  width: 100%;
  padding: 12px 40px 12px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
}

.input-group i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: #2c3e50;
  font-size: 1.2em;
}

input[readonly] {
  background-color: #ecf0f1;
}

input[readonly]:hover {
  background-color: #dfe6e9;
}

.toggleSenha {
	position: absolute;
	right: 10px;
	cursor: pointer;
	font-size: 18px;
	top: 50%;
	transform: translateY(-50%); /* Centraliza verticalmente */
}

.dropdown-menu {
	width: max-content; /* ajusta à largura do conteúdo */
}

.dropdown-item {
	width:auto;		
	padding-right: 10px;
}
