.ps__forms {
  background:url(../../assets/img/bg-forms.jpg) bottom center no-repeat var(--dark-blue-100);
  background-size: cover;
  padding: 70px 0;
  color: #fff;
}

.form_header {
  padding: 40px 0;
}

.gallery_item {
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
}

.gallery_item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.first_img_large .gallery_item:first-child {
  grid-column: span 2 / span 2;
}

.ps_form {
  background-color: var(--dark-blue-80);
  padding: 40px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.ps_form label {
  display: block;
  color: #fff;
  line-height: 20px;
}

.ps_form input[type="text"],
.ps_form input[type="email"],
.ps_form input[type="phone"],
.ps_form select,
textarea {
  background-color: var(--grey-lighter);
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  color: var(--dark-blue-100);
  margin-top: 6px;
}

.ps_form input.error {
  border: 1px solid var(--pure-red-80);
}

.ps_form label.error {
  font-size: 0.75rem;
  color: var(--pure-red-80);
}

.checkbox_wrapper input[type="checkbox"] {
  margin-right: 5px;
}

.checkbox_wrapper label {
  line-height: 1;
}

.checkbox_wrapper label.error {
  position: absolute;
  right: 0;
  margin: 0;
}

.form-spinner-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 75%);
  z-index: 3;
  pointer-events: none;
}

.ps-button.bg-white {
  color: var(--dark-blue-100);
}

@media (max-width: 60rem) {
  .form_gallery {
    display: none;
  }
}

@media (max-width:768px) {
  .ps__forms {
    padding-left: 15px;
    padding-right: 15px;
  }
}