@import "colors";

.form {
  h1 {
    text-align: center;
    margin-bottom: 20px;
  }

  label,
  input {
    font-size: 14px;
  }

  label,
  input[type=submit] {
    margin-top: 24px;
  }

  label {
    margin-bottom: 8px;
    display: inline-block;
  }

  input[type=text],
  input[type=email],
  input[type=password] {
    display: block;
    width: 100%;
    border-radius: 4px;
    border: solid 1px $border-grey;
    padding: 16px;

    &:disabled {
      background-color: $border-grey;
    }
  }
}