/* Bullhorn Application Form Styles */
.bh-application-form {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .bh-application-form {
    column-gap: 16px;
    row-gap: 32px;
  }
}

.bh-application-form .form-group {
  width: 100%;
  background-color: white;
}
@media screen and (min-width: 768px) {
  .bh-application-form .form-group {
    width: 49%;
  }
}
.bh-application-form .form-group.resume-field {
  display: flex;
  align-items: center;
}
.bh-application-form .form-group.resume-field,
.bh-application-form .form-group.current-job-field {
  width: 100%;
  background-color: white;
}

.bh-application-form .form-group.consent-field {
  width: 100%;
  background-color: transparent;
}

.bh-application-form .form-group.consent-field label {
  font-size: 14px;
  line-height: 180%;
  letter-spacing: 0.28px;
  font-weight: 400;
  color: #333;
  display: flex;
  align-items: baseline;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  .bh-application-form .form-group.consent-field label {
    align-items: center;
    gap: 16px;
  }
}

.bh-application-form .form-group.consent-field label a {
  text-decoration: underline;
}
.bh-application-form .form-group.consent-field label input[type="checkbox"] {
  border-radius: 5px;
  border: 1px solid #d8d8d8;
  background: #fff;
  max-width: 20px;
  width: 100%;
  height: 20px;
  opacity: 0.5;
}

.bh-application-form label {
  display: none;
}

.bh-application-form input[type="text"],
.bh-application-form input[type="email"],
.bh-application-form input[type="tel"],
.bh-application-form input[type="file"] {
  width: 100%;
  padding: 12px 20px;
  background-color: #fff;
  outline: none;
  font-size: 16px;
  color: #0f0f0f;
  /* opacity: 0.4; */
  opacity: 0.7;
}
.bh-application-form input[type="file"] {
  color: #333;
  opacity: 0.4;
}
/* .resume-field {
  opacity: 0.5;
} */

.bh-application-form button[type="submit"] {
  color: #022612;
  border: none;
  cursor: pointer;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 1rem;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .bh-application-form button[type="submit"] {
    margin-top: -8px;
  }
}
.bh-application-form button[type="submit"]::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 1px;
  background-color: #022612;
  top: 50%;
  right: 96px;
}

@media screen and (min-width: 768px) {
  .bh-application-form button[type="submit"] {
    margin-right: auto;
    margin-left: unset;
  }
  .bh-application-form button[type="submit"]::before {
    content: none;
  }
}

.bh-notice {
  /* padding: 8px; */
  /* margin-bottom: 1rem; */
  border-radius: 4px;
  text-align: center;
  width: 100%;
}

.bh-notice.bh-error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
.bh-success {
  margin: 220px auto;
  color: #022612;
  font-size: 28px;
  font-weight: 600;
}

/* .bh-notice:not(.bh-error) {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
} */
