/* Webform custom styling */
.block-webform form {
  margin-bottom: 100px;
  label {
    display: none;
  }
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    background-color: #f6f6f6;
    border: solid;
    border-width: 0 0 1px 0;
    margin-bottom: 20px;
    box-shadow: none;
    padding: 10px;
  }
  input[type=submit] {
    width: auto;
    background: #F5A311;
    color: white;
    border-radius: 50px;
    border-width: 0;
    padding: 12px 24px;
    transition: all 0.25s ease-out;
  }
  input[type=submit]:hover {
    background: #DA8F09;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
    transition: all 0.25s ease-out;
  }
}
