/* Create Custom "Colour Matrix" to use within the bootstrap utility classes
----------------------------------------------------------------------------- */
/* 
    Expanded spacing options 
    For example the margin and padding classes now have extended capability (.mb-8 now outputs margin-bottom: 3rem)
*/
/*
    This variable affects the `.h-*` and `.w-*` classes.
    You can now do w-25 or h-80 and have it output width: 25% or height: 80%
*/
/*
    Components variables
    When you create the component you should create the variables with colors for this compontnt
*/
/*
  Custom Components Variables
*/
/*
  We have no variables for alt buttons
  Because the styles depends on the design and can be unique for each project
*/
.form-image-content-form {
  border-radius: 16px;
  border: 1px solid #fff;
  box-shadow: inset 2px 0 20px rgba(255, 255, 255, 0.6);
  position: relative;
}
.form-image-content-form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(239, 246, 246, 0.4);
  filter: blur(5px);
  z-index: 1;
}
.form-image-content-form .custom-gravity-form_wrapper {
  position: relative;
  z-index: 2;
}
.form-image-content-video, .form-image-content-img, .form-image-content-content {
  display: flex;
  align-items: center;
  height: 100%;
}
.form-image-content-content {
  flex-direction: column;
  align-items: flex-start;
}

/*# sourceMappingURL=form-image-content.css.map */