button {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: #4f7ee8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease;
}

button:hover,
button:focus {
  background: #426fd3;
  box-shadow: 0 0 0 3px rgba(79, 126, 232, 0.18);
}

.btn-opcao {
  width: 45%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 10px;
  color: #fff;
}

.btn-opcao--fill {
  width: 100%;
}

.btn-opcao--primary {
  background: #4f7ee8;
}

.btn-opcao--success {
  background: #4c9b72;
}

.btn-grande {
  background: #4b5563;
}

.btn-pequeno {
  background: #64748b;
}

.btn-danger {
  background: #c65a5a;
  color: #fff;
}

.btn-neutral-dark {
  background: #475569;
  color: #fff;
}

.btn-exit {
  width: 100%;
  margin-top: 12px;
  padding: 14px;
  border-radius: 10px;
  background: #cc6b6b;
}

.btn-exit:hover {
  background: #b85757;
}

.btn-pag {
  padding: 12px 18px;
  border-radius: 6px;
  background: #4f7ee8;
  color: #fff;
  font-family: "Courier Prime", monospace;
  font-size: 16px;
}

.btn-pag:hover,
.btn-ok:hover {
  background: #426fd3;
}

.btn-ok,
.btn-cancel {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
}

.btn-cancel {
  background: #cbd5e1;
  color: #0f172a;
}

.btn-cancel:hover {
  background: #b4c0cf;
}

.btn-fechar {
  position: absolute;
  top: 10px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border-radius: 50%;
  background: #d96b6b;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 8px 6px rgba(0, 0, 0, 0.25);
}

.btn-fechar:hover {
  background: #c45d5d;
}
