main > form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;

  background: var(--smoke);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgb(0, 0, 0, 0.5);
  box-sizing: border-box;
  width: 28rem;
  padding: 1.5rem;
  border-radius: 10px;
}

label {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.8;
  text-indent: 2px;
}

fieldset {
  display: flex;
  flex-direction: row;
  flex: 1 1 0px;
  padding: 0;
  border: none;
  gap: 0.5rem;
}

fieldset label {
  flex: 1;
}

input,
select {
  background: #101010;
  border: 1px solid #303030;
  
  text-align: center;
  font-size: 1rem;
  box-sizing: border-box;
  height: 3rem;
  width: 100%;
  border-radius: 5px;
  margin-top: 0.2rem;
  
  transition: box-shadow 0.3s, border-color 0.1s;

  -webkit-appearance:none;
  -moz-appearance:none;
  appearance:none;

  cursor: text;
}

input:hover {
  box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}

input:focus, select:focus{
  outline: none;
  border-color: var(--marblue);
}

select {
  cursor: pointer;
  background-image: url("../images/icons/dropdown-arrow.svg");
  background-position: calc(100% - 0.75rem) center;
  background-repeat: no-repeat;
}


form button {
  margin-top: 1rem;
}