* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #d9f7d9;
  font-family: Arial, sans-serif;
  height: 100%;
  padding: 0.5rem;
}

.header-logo-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.header-logo {
  /* width: 200px; */
  /* width: auto; */
  max-width: 45%;
  width: 100%;
  height: auto;
}

.container {
  max-width: 500px;
  margin: auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.header-image {
  display: block;
  margin: 0 auto 20px;
  width: 200px;
  height: auto;
}
.form-group {
  margin-bottom: 20px;
  text-align: center;
}
.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  text-align: left;
}
.form-group input[type="text"],
.form-group input[type="password"] {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 auto;
  display: block;
}

.form-group button:not(.delete-button) {
  width: 80%;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
  position: relative;
}
.form-group button .icon {
  position: absolute;
  left: 10px;
}
.form-group button .text {
  flex: 1;
  text-align: center;
}

.delete-button {
  width: 80%;
  padding: 10px 20px;
  background-color: #ff6666;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
  margin: 10px 0;
}
.delete-button:hover {
  background-color: #ff3333;
}

#jsonDisplay {
  margin-top: 10px;
  color: white;
  background-color: black;
  padding: 10px;
}

.default-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px auto;
  position: relative;
  background-color: black;
}

.aligned-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px auto;
  position: relative;
}
.button-icon {
  position: absolute;
  left: 10px;
  height: 24px;
}
.button-text {
  flex: 1;
  text-align: center;
}
.select-group select {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: block;
  margin: 0 auto;
}

.form-group input[type="email"] {
  width: calc(100% - 20px);
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin: 0 auto;
  display: block;
}

table {
  margin: 0 auto;
}

/*btn voltar*/
.btn-voltar {
  display: block;
  width: fit-content;
  padding: 10px 15px;
  background-color: #4CAF50;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.btn-voltar:hover {
  background-color: #358137;
}
