body {
  width: 100%;
  height: 100vh;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial;
}

.dialog {
  border-radius: 12px;
  background-color: #fff;
  width: 350px;
}

.dialog .header {
  border-radius: 12px 12px 0 0;
  padding: 12px;
  background-color: #007d9c;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dialog .header .title {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
}

.dialog .header .subtitle {
  margin-top: 4px;
  font-size: 12px;
  color: #fff;
}

.dialog .body {
  padding: 12px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.dialog .body .forms form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dialog .body .forms form .inputs {
  margin-bottom: 8px;
}

button {
  padding: 3px 8px;
  margin-right: 9px;
  border-radius: 0.1875rem;
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
  box-sizing: border-box;
  border: none;
  background-color: #f7f9fa;
  color: #007d9c;
  font: bold 0.875rem Roboto, sans-serif;
}

input[type="text"] {
  width: 200px;
  border: 1px solid #ccc;
  background: #fff;
  color: black;
  border-radius: 5px;
  box-sizing: border-box;
  height: 30px;
}
