@charset "UTF-8";
@font-face {
  font-family: "GarageGothicBold";
  src: url("/DigitUp/Minus196/assets/fonts/garage-gothic.woff2") format("woff2"), url("/DigitUp/Minus196/assets/fonts/garage-gothic.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BarlowSemiCondensed";
  src: url("/DigitUp/Minus196/assets/fonts/BarlowSemiCondensed-ExtraBold.woff2") format("woff2"), url("/DigitUp/Minus196/assets/fonts/BarlowSemiCondensed-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "BarlowSemiCondensedLight";
  src: local("Barlow Semi Condensed Light"), local("BarlowSemiCondensed-Light"), local("Barlow Semi Condensed");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "OpenSansLight";
  src: url("/fonts/OpenSans-Light.woff2") format("woff2"), url("/fonts/OpenSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
.apply-section {
  background-size: cover;
  background-position: bottom;
  padding: 4rem 0;
}

.apply-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  color: #000;
  margin-bottom: 5rem;
}

.apply-form {
  margin: 0 auto;
}

/* ✅ NEW ROW STRUCTURE */
.row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

/* FORM ELEMENTS */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 1rem;
  font-weight: 100;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  margin-bottom: 0.375rem;
  color: #000;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.875rem;
  border-radius: 0.375rem;
  border: none;
  background: #fff;
  font-size: 0.875rem;
  font-family: "BarlowSemiCondensed", Helvetica, Arial, Lucida, sans-serif;
  width: 100%;
}

/* FULL WIDTH SECTIONS */
.full-width {
  width: 100%;
  margin-bottom: 1.25rem;
}

/* CHECKBOX */
.checkbox-group {
  flex-direction: row;
  align-items: center;
}

.checkbox-group input {
  margin-right: 0.625rem;
}

/* BUTTON */
.apply-btn {
  margin-top: 1.875rem;
  padding: 0.875rem 5rem;
  background: #000;
  color: #FEDD00;
  border: none;
  font-weight: 100;
  cursor: pointer;
}

/* ✅ FILE INPUT IMPROVEMENT (optional but better) */
input[type=file] {
  background: #fff;
  padding: 0.625rem;
}

/* 📱 MOBILE */
@media (max-width: 599.9px) {
  .row-2,
  .row-3 {
    grid-template-columns: 1fr;
  }
}
