/**
 * Exam Download Form Styles
 */

.form-row--two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  margin-top: 1rem;
}

.form-row--two-columns > .FormElementContainer {
  min-width: 0;
  width: auto;
}

.form-row--full-width {
  width: 100%;
}

form#beck-exam-pages-download-form .form-actions {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}


@media (max-width: 768px) {
  .form-row--two-columns {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}
