.uniform__potty {
    position: absolute;
    left: -9999px;
  }

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0 40px 0;
}

fieldset {
  border-radius: 30px;
  border-color: black;
  border-width: 1px;
}

fieldset label {
  cursor: pointer;
}

form input[type="button"] {
  background-color: white;
  border-radius: 20px;
}

form input[type="radio"] {
  margin-bottom: 10px;
}

form input[type="text"], form input[type="email"], form input[type="url"] {
  border: none;
  border-bottom: 1px solid black;
  background-color: #f6f6f6;
  padding: 5px;
  width: 100%;
}

form input[type="button"] {
  cursor: pointer;
  width: auto;
  justify-self: end;
  align-self: end;
  padding: 10px 20px 10px 20px;
  font-size: 1.1em;
}

form .form-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8vh;
}

form .form-footer #log {
  font-size: 1.2em;
  width: 50%;
  line-height: 30px;
}

form .form-error {
  color: #aa2222;
}

form .form-hint {
  font-size: 0.7em;
  color: #999999;
  line-height: 0.8em;
}

fieldset .form-hint {
  padding: 5px;
}

.form-split {
  display: flex;
  justify-content: space-between;
}

.form-split::first-child, .form-split::last-child {
  width: 50%;
}

form .log{
  margin-top: 10px;
}

@media only screen and (max-width: 767px) {
  .form-split {
    flex-direction: column-reverse;
    gap: 20px;
  }
}

.file-upload{
  display: flex;
  flex-direction: column;
}

.file-upload .form-hint {
  margin: 10px 0 10px 0;
  line-height: 12px;
}
