.custom-contact-form {
    display: flex;
    flex-direction: column;
    background: #fff;
    /* width: 400px; */
    border-radius: 10px;
    overflow: hidden;
    -webkit-box-shadow: 0px 0px 40px 9px rgba(0,0,0,0.6); 
    box-shadow: 0px 0px 40px 9px rgba(0,0,0,0.4);
  }
  
  .custom-contact-form__head {
    background: #004aad;
    margin-bottom: 10px;
    padding: 15px;
  }
  
  .custom-contact-form__head h1,
  .custom-contact-form__head p {
    text-align: center;
    color: white;
  }
  
  .custom-contact-form__head p {
    font-size: 12px;
  }
  
  .custom-contact-form__label {
    margin-left: 20px;
  }
  
  .custom-contact-form__input,
  .custom-contact-form__textarea {
    padding: 10px;
    margin: 5px 20px 20px 20px;
    outline: none;
    border-radius: 10px;
    border: 1px solid #ccc;
  }
  
  .custom-contact-form__input:focus,
  .custom-contact-form__textarea:focus {
    border: 1px solid #004aad;
  }
  
  .custom-contact-form__textarea {
    resize: vertical;
  }
  
  .custom-contact-form__button {
    outline: none;
    background: #004aad;
    border: none;
    padding: 10px;
    border-radius: 50px;
    margin: 10px;
    color: white;
    cursor: pointer;
    transition: all 0.5s;
    margin-bottom: 25px;
  }
  
  .custom-contact-form__button:hover {
    background: rgb(0, 105, 204);
  }

  .custom-contact-form__button {
    outline: none;
    background: #004aad;
    border: none;
    padding: 10px;
    border-radius: 50px;
    margin: 10px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s;
  }
  
  .button-text {
    display: inline-block;
  }
  
  .button-loader {
    display: none;
    border: 2px solid #f3f3f3;
    border-radius: 50%;
    border-top: 2px solid white;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  .custom-contact-form__button.loading .button-text {
    visibility: hidden;
  }
  
  .custom-contact-form__button.loading .button-loader {
    display: inline-block;
  }
  
  
  @media screen and (max-width: 417px) {
    .custom-contact-form {
      width: 100%;
      height: 100%;
    }
  }
  