@charset "utf-8";
/* CSS Document */
  .body-form {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
	 /* height: 70vh;*/
        font-family: Arial, sans-serif;
       /* background-color: #f2f2f2;*/
      }
      #cform {
        background: #fff;
        padding: 20px;
        border-radius: 8px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        max-width: 500px;
        width: 100%;
        box-sizing: border-box;
		  margin: 0 auto;
      }
      label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
      }
      input[type="text"],
      input[type="email"],
      textarea {
        width: calc(100% - 22px);
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
      }
      input[type="submit"] {
        background-color: #111112;
        color: white;
        padding: 10px 15px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
      }
      input[type="submit"]:hover {
        background-color: #45a049;
      }
      .g-recaptcha {
        margin-bottom: 15px;
      }
      @media (max-width: 600px) {
        body {
          padding: 0px;
        }
        #cform {
          padding: 15px;
        }
      }
