* {
  padding: 0;
  margin: 0;
}

#signature-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 10%;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

iframe {
  height: 100vh;
  width: 50%;
}

.wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  height: 100%;
  flex-wrap: wrap;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.inputs-container {
  display: flex;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: 10%;
  height: 100%;
  width: 50%;
}

.inputs-container > input {
  margin: 1rem 0rem;
}

input {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
}

button {
  background-color: #0f6fff; /* Green */
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  transition: ease-in-out 0.6s;
  font-weight: bold;
}

button:disabled {
  background-color: #0dcf17;
  transition: ease-in-out 0.6s;
}
