* {
  outline: none;
  -webkit-tap-highlight-color: transparent;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
  margin: 0px;
  background-color: #111;
}

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  background-color: #111;
  height: 100px;
  gap: 15px;
}

.title-logo {
  width: 60px;
  height: 60px;
  background-image: url(./assets/images/logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: 0px 0px 20px #0008;
  border-radius: 10px;
}

.title-text {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #AAA;
}

.content {
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 20px;
  align-items: center;
  min-height: calc(100vh - 320px);
  background-color: #FFF;
}

.inputs {
  display: flex;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
}

fieldset {
  flex: 50%;
  border: 2px solid #1115;
  border-radius: 8px;
}

@media (max-width: 900px) {
  .inputs {
    flex-direction: column;
  }

  fieldset {
    flex: 100%;
  }
}

legend {
  padding: 0px 10px;
  font-weight: 500;
  color: #000A;
}

.hint {
  color: #111A;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 10px;
}

.controls {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 8px;
}

input {
  height: 34px;
  padding: 0px 12px;
  border: 1px solid #1116;
  border-radius: 6px;
  transition: all 0.15s;
}

input:focus {
  border: 1px solid #cc000055;
  outline: 1px solid #cc000055;
  box-shadow: 0px 0px 0px 4px #cc000066;
}

button {
  height: 50px;
  background-color: #cc0000;
  font-weight: 600;
  font-size: 13px;
  padding: 0px 12px;
  border-radius: 8px;
  border: none;
  color: #FFF;
  margin-top: 10px;
}

button:active {
  background-color: #aa0000;
}

.loading {
  font-size: 18px;
  color: #000A;
  font-weight: 500;
  padding: 20px 0px;
}

#output {
  max-width: 800px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  background-color: #111;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: #AAA;
  height: 24px;
}