/* =========================================================
   UPPHL PLAYER REGISTRATION
   WHITE + ORANGE SIMPLE THEME
========================================================= */

:root {
  --orange: #f47b20;
  --orange-dark: #d95f0b;
  --orange-light: #fff3e8;
  --white: #ffffff;
  --bg: #f8f8f8;
  --border: #e5e5e5;
  --text: #252525;
  --muted: #777777;
}


/* =========================================================
   HERO
========================================================= */

.player-registration-hero {
  background:
    linear-gradient(
      135deg,
      rgba(244, 123, 32, 0.96),
      rgba(217, 95, 11, 0.94)
    );
  padding: 75px 20px;
  text-align: center;
  color: #fff;
}

.player-registration-hero .hero-small {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.95;
}

.player-registration-hero h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 800;
}

.player-registration-hero p {
  margin: 12px 0 0;
  font-size: 17px;
  opacity: 0.95;
}


/* =========================================================
   MAIN SECTION
========================================================= */

.registration-section {
  background: #f8f8f8;
  padding: 55px 0 75px;
}

.registration-wrapper {
  max-width: 1050px;
  margin: auto;
}


/* =========================================================
   INTRO
========================================================= */

.registration-intro {
  background: #ffffff;
  border: 1px solid var(--border);
  border-left: 5px solid var(--orange);
  padding: 22px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}

.registration-icon {
  min-width: 55px;
  height: 55px;
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 50%;
}

.registration-intro h2 {
  margin: 0 0 5px;
  color: var(--text);
  font-size: 22px;
}

.registration-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   FORM SECTION
========================================================= */

.form-section {
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 22px;
  padding: 30px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eeeeee;
}

.section-heading > span {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 4px;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
}

.section-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}


/* =========================================================
   FORM GRID
========================================================= */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: 1 / -1;
}


/* =========================================================
   LABEL
========================================================= */

.form-group > label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.form-group > label span {
  color: var(--orange);
  margin-left: 3px;
}


/* =========================================================
   INPUTS
========================================================= */

.form-group input[type="text"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dcdcdc;
  background: #fff;
  color: #333;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 4px;
  outline: none;
  transition: 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(244, 123, 32, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}


/* =========================================================
   RADIO
========================================================= */

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #dedede;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 13px;
  color: #444;
}

.radio-option:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.radio-option input {
  accent-color: var(--orange);
}


/* =========================================================
   FIELD NOTE
========================================================= */

.field-note {
  color: #888;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 7px;
}


/* =========================================================
   DOCUMENT WARNING
========================================================= */

.document-warning {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  margin-bottom: 25px;
  background: #fff8f2;
  border: 1px solid #f3d5bd;
  color: #70401f;
}

.document-warning i {
  color: var(--orange);
  margin-top: 2px;
}

.document-warning p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
}


/* =========================================================
   FILE UPLOAD
========================================================= */

.file-box {
  position: relative;
  min-height: 120px;
  border: 1px dashed #d5d5d5;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border-radius: 4px;
  color: #777;
  overflow: hidden;
}

.file-box:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.file-box input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.file-box i {
  color: var(--orange);
  font-size: 25px;
}

.file-box span {
  font-size: 13px;
  font-weight: 500;
}


/* =========================================================
   DECLARATION
========================================================= */

.declaration-box {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  padding: 20px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 0;
  border-bottom: 1px solid #e7e7e7;
  cursor: pointer;
}

.check-option:last-child {
  border-bottom: 0;
}

.check-option input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--orange);
  flex-shrink: 0;
}

.check-option span {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}


/* =========================================================
   FORM NOTE
========================================================= */

.form-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  padding: 13px 15px;
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
}

.form-note i {
  color: var(--orange);
  margin-top: 3px;
}

.form-note p {
  margin: 0;
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}


/* =========================================================
   BUTTONS
========================================================= */

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.btn-reset,
.btn-submit {
  border: none;
  padding: 13px 24px;
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s ease;
}

.btn-reset {
  background: #eeeeee;
  color: #555;
}

.btn-reset:hover {
  background: #dedede;
}

.btn-submit {
  background: var(--orange);
  color: #fff;
}

.btn-submit:hover {
  background: var(--orange-dark);
}


/* =========================================================
   FOOTER LIGHT THEME
========================================================= */

/* =========================================================
   FOOTER (Inherited from global style.css)
========================================================= */


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .player-registration-hero {
    padding: 55px 18px;
  }

  .player-registration-hero h1 {
    font-size: 32px;
  }

  .registration-section {
    padding: 35px 12px 50px;
  }

  .form-section {
    padding: 22px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: auto;
  }

  .registration-intro {
    align-items: flex-start;
    padding: 18px;
  }

  .section-heading h2 {
    font-size: 19px;
  }

  .radio-group {
    flex-direction: column;
    align-items: stretch;
  }

  .radio-option {
    width: 100%;
    box-sizing: border-box;
  }

  .form-actions {
    flex-direction: column-reverse;
  }

  .btn-reset,
  .btn-submit {
    width: 100%;
    justify-content: center;
  }

}


@media (max-width: 480px) {

  .player-registration-hero h1 {
    font-size: 27px;
  }

  .player-registration-hero p {
    font-size: 14px;
  }

  .registration-intro {
    flex-direction: column;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading > span {
    min-width: 40px;
    height: 40px;
  }

  .section-heading h2 {
    font-size: 17px;
  }

  .form-section {
    padding: 18px 14px;
  }

}

/* =====================================
   FOOTER TEXT ALIGNMENT
===================================== */

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

.footer-col {
  text-align: left;
}

.footer-col h4 {
  margin: 0 0 28px;
  text-align: left;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 18px;
  text-align: left;
}

.footer-links li a {
  display: block;
  text-align: left;
  text-decoration: none;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 18px;
  text-align: left;
}

.footer-contact p i {
  width: 20px;
  min-width: 20px;
  text-align: center;
  margin-top: 3px;
}

/* Footer About */
.footer-about {
  text-align: left;
}

.footer-about p {
  text-align: left;
  line-height: 1.7;
  margin: 0 0 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-col,
  .footer-col h4,
  .footer-links li,
  .footer-links li a,
  .footer-about,
  .footer-about p {
    text-align: left;
  }
}