.form {
  .forms {
    .services-grid {
      input {
        display: none;
      }

      input[type="radio"]:checked + label {
        .service-card {
          background: rgba(0, 63, 23, 1);
        }
      }

      .service-card {
        display: flex;
        justify-content: center;

        div {
          display: flex;
          align-items: center;
          margin: 0;
          padding-inline: 15px;
        }
      }
    }

    .button-area {
      display: flex;
      justify-content: center;
      padding-block: 20px;

      button {
        padding: 17px 40px;
        border-radius: 35px;
        font-size: 20px;
        font-weight: 600;
        color: #dff0e6;
      }

      button:hover {
        background: rgba(0, 63, 23, 1);
      }
    }
  }


  /* Lawn Care Quote */

  form {
    p {
      input,
      input::placeholder,
      textarea,
      textarea::placeholder {
        background: rgb(20 83 45) !important;
      }
    }

    button[type="submit"] {
      margin-top: 30px !important;
      padding: 17px 40px;
      color: #FFFFFF !important;
      border-radius: 35px;
      font-size: 20px;
    }

    .NumberInput {
      display: flex;
      flex-flow: column;
      align-items: flex-start;

      input,
      input::placeholder,
      textarea,
      textarea::placeholder {
        border: rgb(74, 222, 128) !important;
        background: rgb(20 83 45) !important;
        color: rgba(255, 255, 255, 0.5) !important;
      }
    }

    .RadioSelect {
      display: flex;
      flex-flow: column;
      text-align: left;

      .RadioSelectContainer {
        display: flex;
        flex-flow: row wrap;

        .RadioSelectItem {
          padding-block: 5px;
          width: 100%;

          label {
            display: flex;
            flex-flow: column;
            justify-content: center;
            border-radius: 12px;
            padding-block: 10px;
            height: 70px;
            width: 100%;
            font-size: 14px;
            color: #FFFFFF;

            span {
              color: #aba2a2;
              font-size: 12px;
            }
          }
        }

        input[type="radio"]:checked + label {
          background-color: rgb(20 83 45) !important;
          color: #FFFFFF
        }

        input {
          display: none;
        }
      }
    }

  }

  @media (min-width: 500px) {
    form {
      .RadioSelect {
        .RadioSelectContainer {
          justify-content: space-between;
        }
      }

      .items-3 {
        .RadioSelectContainer {
          .RadioSelectItem {
            width: 30%;
          }
        }
      }

      .items-4 {
        .RadioSelectContainer {
          .RadioSelectItem {
            width: 23%;
          }
        }
      }

    }
  }
}