body {
  margin: 0;
  padding: 0;
  height: 100vh;
  overflow: hidden;
  font-family: monospace;
  font-size: 14px;
  color: #000000;
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
}

label {
  cursor: pointer;
  user-select: none;
}

.config-form {
  box-sizing: border-box;
  width: 100%;
  max-width: 600px;
  margin-top: 120px;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.title {
  font-size: 28px;
  font-family: "Times New Roman", Times, serif;
  text-align: center;
  padding-block: 16px;
}

.input-group {
  width: 100%;
  height: 48px;
  display: flex;
  gap: 4px;
}

.url-input {
  all: unset;
  width: 100%;
  height: 100%;
  line-height: 48px;
  border-radius: 24px 4px 4px 24px;
  padding-inline-start: 24px;
  padding-inline-end: 16px;
  background-color: white;
}

.submit-button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  padding-inline-start: 20px;
  padding-inline-end: 24px;
  border-radius: 4px 24px 24px 4px;
  font-family: inherit;
  font-size: 12px;
  color: white;
  background-color: hsl(0, 0%, 0%);
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

.submit-button:hover {
  background-color: hsl(0, 0%, 20%);
}

.submit-button:active {
  background-color: hsl(0, 0%, 10%);
}

.form-options {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.option-item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

@media (max-width: 360px) {
  .config-form {
    margin-top: 80px;
    align-items: flex-start;
  }
  
  .title {
    padding-block: 0;
    text-align: start;
  }

  .form-options {
    flex-direction: column;
    align-items: flex-start;
  }
}
