body {
  font-family: "Inter", sans-serif;
  background-color: #e8d0b7;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

h1,
h2,
p {
  text-align: center;
  color: #1e1e1e;
}

p {
    font-size: 18px;
    line-height: 1.4;
}

span {
    font-weight: bold;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-self: center;
  align-items: center;
  max-width: 600px;
}

.message {
    padding-left: 20px;
    padding-right: 12px;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pix-button {
  background-color: #4caf50;
  color: white;
  padding: 15px 25px;
  border: 3px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: bold;
  transition: background-color 0.3s ease, border-color 0.3s ease,
    box-shadow 0.3s ease;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 4px;
}

.pix-button:hover {
  background-color: #45a049;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.pix-button.success {
  border-color: #28a745;
  background-color: #28a745;
  box-shadow: 0 0 15px rgba(40, 167, 69, 0.5);
}

.pix-button.error {
  border-color: #dc3545;
  background-color: #dc3545;
  box-shadow: 0 0 15px rgba(220, 53, 69, 0.5);
}

.message-text {
  color: #555;
  font-size: 0.95rem;
  min-height: 20px;
}

.message-text.success-message {
  color: #28a745;
  font-weight: bold;
}

.message-text.error-message {
  color: #dc3545;
  font-weight: bold;
}

.pix-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qrcode {
    border-radius: 16px;
    margin-bottom: 16px;
    max-width: 90%;
    display: flex;
    justify-self: center;
}

.noivos {
    border-radius: 100%;
    width: 128px;
    height: auto;
    display: flex;
    justify-self: center;
}