/* ==========================================================
   PLANET NETWORK NUSANTARA
   FORM PENDAFTARAN INTERNET
   STYLE.CSS - PART 1/4
========================================================== */

/* ==========================
   RESET & ROOT
========================== */

* {
  box-sizing: border-box;
}

:root {
  --blue: #087fc2;
  --blue-dark: #045d94;
  --blue-soft: #eaf8ff;
  --cyan: #30c7ef;

  --white: #ffffff;
  --text: #08253b;
  --muted: #557083;

  --border: rgba(8, 127, 194, 0.34);
  --border-strong: rgba(8, 127, 194, 0.55);

  --glass: rgba(255, 255, 255, 0.76);
  --glass-strong: rgba(255, 255, 255, 0.90);

  --shadow: 0 24px 70px rgba(0, 74, 126, 0.22);
  --shadow-soft: 0 14px 35px rgba(0, 91, 145, 0.15);

  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

/* ==========================
   BASE
========================== */

html {
  width: 100%;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

/* ==========================
   PAGE WRAPPER
========================== */

.page-shell {
  position: relative;
  width: min(1240px, 94%);
  margin: 0 auto;
  padding: 28px 0 20px;
}

.registration-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;

  padding: 24px;
  border-radius: var(--radius-xl);

  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.88);

  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

/* ==========================
   GLASS CARD
========================== */

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ==========================
   LEFT PANEL
========================== */

.info-panel {
  min-width: 0;
  padding: 22px;

  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.78);

  box-shadow: 0 18px 48px rgba(0, 89, 138, 0.12);
}

.brand-header {
  display: flex;
  justify-content: center;
  align-items: center;

  margin-bottom: 18px;
}

.logo {
  width: min(285px, 72vw);
  height: auto;

  filter: drop-shadow(0 10px 18px rgba(0, 65, 110, 0.14));
}

/* ==========================
   BANNER
========================== */

.banner-card {
  width: 100%;
  margin-bottom: 18px;

  border-radius: 24px;
  overflow: hidden;

  background: linear-gradient(
    135deg,
    rgba(8, 127, 194, 0.18),
    rgba(48, 199, 239, 0.16)
  );

  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 45px rgba(0, 91, 145, 0.16);
}

.banner-img {
  width: 100%;
  height: auto;
  min-height: 150px;

  object-fit: cover;
  display: block;
}

/* ==========================
   RIGHT PANEL
========================== */

.form-panel {
  min-width: 0;
  padding: 26px;

  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);

  box-shadow: 0 18px 48px rgba(0, 89, 138, 0.14);
}
/* ==========================================================
   STYLE.CSS - PART 2/4
   INTRO • BENEFIT • STEP • HEADING
========================================================== */

/* ==========================
   INTRO
========================== */

.intro-content{
    width:100%;
}

.status-pill,
.intro-content h1{
    text-align:center;
}

.status-pill{
    margin-left:auto;
    margin-right:auto;
    display:flex;
    width:fit-content;
}
.status-pill{

    display:flex;

    width:fit-content;

    margin:0 auto 16px auto;

    justify-content:center;

    align-items:center;

    padding:8px 16px;

    border-radius:999px;

    background:rgba(8,127,194,.12);

    color:var(--blue-dark);

    font-size:12px;

    font-weight:900;

    letter-spacing:.8px;

    text-transform:uppercase;

}

.intro-content h1{

    margin:0 0 12px;

    color:#063958;

    font-size:26px;

    line-height:1.25;

    font-weight:800;

    text-align:center;

}

.brand-text{

    margin:0 0 16px;

    color:#195579;

    font-size:15px;

    line-height:1.7;

    font-weight:700;

}

.intro-text{

    margin:0 0 22px;

    color:#557083;

    font-size:14px;

    line-height:1.7;

}

/* ==========================
   BENEFIT
========================== */

.benefit-list{

    display:grid;

    gap:10px;

    margin-bottom:24px;

}

.benefit-item{

    display:flex;

    align-items:flex-start;

    gap:12px;

}

.benefit-item span{

    width:26px;
    height:26px;

    flex-shrink:0;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );

    color:#fff;

    font-size:13px;

    font-weight:900;

}

.benefit-item p{

    margin:2px 0 0;

    color:#295b78;

    font-size:14px;

    line-height:1.5;

}

/* ==========================
   STEP
========================== */

.steps-list{

    display:grid;

    gap:12px;

}

.step-item{

    display:flex;

    align-items:center;

    gap:14px;

    padding:14px;

    border-radius:18px;

    background:#ffffff;

    border:1px solid rgba(8,127,194,.12);

    box-shadow:0 8px 18px rgba(0,0,0,.04);

}

.step-number{

    width:40px;
    height:40px;

    flex-shrink:0;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--blue),
        var(--cyan)
    );

    color:#fff;

    font-size:16px;

    font-weight:900;

    box-shadow:0 8px 20px rgba(8,127,194,.25);

}

.step-item p{

    margin:0;

    color:#355f77;

    font-size:14px;

    line-height:1.5;

    font-weight:700;

}

/* ==========================
   FORM HEADING
========================== */

.form-heading{

    margin-bottom:26px;

    text-align:center;

}

.form-heading h2{

    margin:0 0 8px;

    color:#063958;

    font-size:28px;

    font-weight:800;

}

.form-heading p{

    width:min(520px,100%);

    margin:0 auto;

    color:#557083;

    font-size:14px;

    line-height:1.6;

}

/* ==========================
   FORM GRID
========================== */

.registration-form{

    display:grid;

    grid-template-columns:repeat(2,minmax(0,1fr));

    gap:18px;

}

.full-width{

    grid-column:1 / -1;

}
/* ==========================================================
   STYLE.CSS - PART 3/4
   FORM INPUT • UPLOAD • DETAIL PAKET • BUTTON
========================================================== */

/* ==========================
   FORM GROUP
========================== */

.form-group label {
  display: block;
  margin: 0 0 7px;

  color: #123d57;

  font-size: 13px;
  font-weight: 900;
}

.form-group label span {
  color: #e23434;
}

/* ==========================
   INPUT ICON WRAP
========================== */

.input-icon-wrap {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
}

.field-icon {
  position: absolute;
  left: 14px;
  top: 50%;

  transform: translateY(-50%);

  z-index: 2;

  font-size: 16px;
  line-height: 1;

  pointer-events: none;
}

.textarea-wrap .field-icon {
  top: 17px;
  transform: none;
}

/* ==========================
   INPUT SELECT TEXTAREA
========================== */

.registration-form input,
.registration-form textarea,
.registration-form select {
  width: 100%;
  min-width: 0;

  border: 2px solid var(--border-strong);
  outline: none;

  border-radius: 15px;

  padding: 13px 14px 13px 43px;

  background: rgba(255, 255, 255, 0.96);

  color: var(--text);

  font-size: 14px;
  line-height: 1.35;

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.registration-form textarea {
  min-height: 96px;
  resize: vertical;

  padding-top: 13px;
}

.registration-form select {
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  padding-right: 38px;
}

.select-wrap::after {
  content: "⌄";

  position: absolute;
  right: 15px;
  top: 50%;

  transform: translateY(-56%);

  color: var(--blue-dark);

  font-size: 18px;
  font-weight: 900;

  pointer-events: none;
}

/* ==========================
   INPUT FOCUS
========================== */

.registration-form input:focus,
.registration-form textarea:focus,
.registration-form select:focus {
  border-color: var(--blue);

  box-shadow: 0 0 0 4px rgba(8, 127, 194, 0.14);
}

/* ==========================
   LOCATION
========================== */

.location-row {
  display: grid;

  grid-template-columns: 1fr auto;

  gap: 10px;
}

.location-btn {
  border: 0;

  border-radius: 15px;

  padding: 0 18px;

  background: linear-gradient(135deg, var(--blue), var(--cyan));

  color: #ffffff;

  font-size: 13px;
  font-weight: 900;

  cursor: pointer;

  white-space: nowrap;

  box-shadow: 0 12px 26px rgba(8, 127, 194, 0.22);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.location-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 16px 32px rgba(8, 127, 194, 0.30);
}

.location-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ==========================
   UPLOAD
========================== */

.upload-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 16px;
}

.upload-box {
  position: relative;

  padding: 15px;

  border: 2px dashed var(--border-strong);

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.86);

  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.upload-box:hover {
  border-color: var(--blue);

  box-shadow: 0 12px 28px rgba(8, 127, 194, 0.13);
}

.upload-label {
  display: grid !important;

  grid-template-columns: auto 1fr;

  grid-template-areas:
    "icon title"
    "icon desc";

  gap: 3px 12px;

  align-items: center;

  margin: 0 !important;

  cursor: pointer;
}

.upload-icon {
  grid-area: icon;

  width: 40px;
  height: 40px;

  display: grid;
  place-items: center;

  border-radius: 13px;

  background: rgba(8, 127, 194, 0.12);

  font-size: 20px;
}

.upload-title {
  grid-area: title;

  color: #123d57;

  font-size: 14px;
  font-weight: 900;
}

.upload-desc {
  grid-area: desc;

  color: #d33b3b;

  font-size: 12px;
  font-weight: 800;
}

.upload-box input[type="file"] {
  position: absolute;

  inset: 0;

  opacity: 0;

  cursor: pointer;

  padding: 0;
}

.file-name {
  margin: 10px 0 0;

  color: var(--muted);

  font-size: 12px;
  font-weight: 700;

  line-height: 1.35;

  word-break: break-word;
}

/* ==========================
   DETAIL PAKET
========================== */

.package-detail {
  padding: 14px 16px;

  border-radius: 16px;

  background: rgba(8, 127, 194, 0.08);

  border: 1px solid rgba(8, 127, 194, 0.18);
}

.package-detail strong {
  display: block;

  margin-bottom: 6px;

  color: #063958;

  font-size: 14px;
  font-weight: 900;
}

.package-detail p {
  margin: 0;

  color: #41677c;

  font-size: 13px;
  line-height: 1.5;

  font-weight: 700;
}

/* ==========================
   AGREEMENT
========================== */

.agreement-note {
  margin: 0;

  padding: 13px 15px;

  border-radius: 15px;

  background: rgba(8, 127, 194, 0.07);

  border: 1px solid rgba(8, 127, 194, 0.14);

  color: #41677c;

  font-size: 12px;
  line-height: 1.55;

  font-weight: 700;
}

/* ==========================
   SUBMIT BUTTON
========================== */

.submit-btn {
  position: relative;

  min-height: 50px;

  border: 0;

  border-radius: 16px;

  background: linear-gradient(135deg, var(--blue), var(--cyan));

  color: #ffffff;

  font-size: 15px;
  font-weight: 900;

  letter-spacing: 0.3px;

  text-transform: uppercase;

  cursor: pointer;

  box-shadow: 0 14px 30px rgba(8, 127, 194, 0.28);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 18px 38px rgba(8, 127, 194, 0.38);
}

.submit-btn:disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.submit-btn.is-loading .btn-text {
  opacity: 0.25;
}

.btn-loader {
  display: none;

  position: absolute;

  left: 50%;
  top: 50%;

  width: 22px;
  height: 22px;

  margin-left: -11px;
  margin-top: -11px;

  border-radius: 50%;

  border: 3px solid rgba(255, 255, 255, 0.55);
  border-top-color: #ffffff;

  animation: spin 0.7s linear infinite;
}

.submit-btn.is-loading .btn-loader {
  display: block;
}

/* ==========================
   FOOTER
========================== */

.footer-note {

  margin-top: 18px;

  text-align: center;

  color: #5f7f91;

  font-size: 11px;

  font-weight: 700;

  line-height: 1.5;

}
/* ==========================================================
   STYLE.CSS - PART 4/4
   RESPONSIVE • ANIMATION • FINAL
========================================================== */

/* ==========================
   ANIMATION
========================== */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.fade-up {
  animation: fadeUp .6s ease both;
}

/* ==========================
   DESKTOP LARGE
========================== */

@media (min-width:1400px){

  .page-shell{
    width:min(1320px,92%);
  }

}

/* ==========================
   TABLET
========================== */

@media (max-width:1024px){

  .registration-shell{

    grid-template-columns:1fr;

    gap:22px;

    padding:20px;

  }

  .info-panel{

    order:1;

  }

  .form-panel{

    order:2;

  }

}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

  .page-shell{

    width:95%;

    padding:16px 0;

  }

  .registration-shell{

    grid-template-columns:1fr;

    gap:16px;

    padding:14px;

    border-radius:22px;

  }

  .info-panel,
  .form-panel{

    padding:16px;

    border-radius:18px;

  }

  .brand-header{

    margin-bottom:12px;

  }

  .logo{

    width:min(220px,72vw);

  }

  .banner-card{

    margin-bottom:14px;

    border-radius:18px;

  }

  .banner-img{

    min-height:120px;

  }

  .status-pill{

    font-size:10px;

    padding:7px 12px;

    margin-bottom:12px;

  }

  .intro-content h1{

    font-size:24px;

    line-height:1.3;

    margin-bottom:10px;

  }

  .brand-text{

    font-size:13px;

    line-height:1.6;

    margin-bottom:10px;

  }

  .intro-text{

    font-size:13px;

    line-height:1.55;

    margin-bottom:18px;

  }

  .benefit-list{

    gap:8px;

    margin-bottom:18px;

  }

  .benefit-item{

    gap:10px;

  }

  .benefit-item span{

    width:22px;
    height:22px;

    font-size:11px;

  }

  .benefit-item p{

    font-size:13px;

  }

  .steps-list{

    gap:8px;

  }

  .step-item{

    padding:10px;

    gap:10px;

    border-radius:14px;

  }

  .step-number{

    width:30px;
    height:30px;

    font-size:13px;

  }

  .step-item p{

    font-size:12px;

    line-height:1.4;

  }

  .form-heading{

    margin-bottom:18px;

  }

  .form-heading h2{

    font-size:22px;

  }

  .form-heading p{

    font-size:12px;

  }

  .registration-form{

    grid-template-columns:1fr;

    gap:14px;

  }

  .upload-grid{

    grid-template-columns:1fr;

    gap:12px;

  }

  .location-row{

    grid-template-columns:1fr;

    gap:8px;

  }
.location-btn{
    min-height:42px;
    padding:0 18px;
    border-radius:13px;
    font-size:13px;
}
  .registration-form input,
  .registration-form textarea,
  .registration-form select{

    font-size:13px;

    padding:12px 12px 12px 40px;

  }

  .field-icon{

    left:12px;

    font-size:15px;

  }

  .upload-box{

    padding:12px;

  }

  .upload-title{

    font-size:13px;

  }

  .upload-desc{

    font-size:11px;

  }

  .file-name{

    font-size:11px;

  }

  .package-detail{

    padding:12px;

  }

  .package-detail strong{

    font-size:13px;

  }

  .package-detail p{

    font-size:12px;

  }

  .agreement-note{

    padding:12px;

    font-size:11px;

    line-height:1.45;

  }

  .submit-btn{

    min-height:48px;

    font-size:13px;

  }

}

/* ==========================
   SMALL MOBILE
========================== */

@media (max-width:480px){

  .page-shell{

    width:96%;

  }

  .logo{

    width:190px;

  }

  .intro-content h1{

    font-size:21px;

  }

  .registration-shell{

    padding:10px;

  }

  .info-panel,
  .form-panel{

    padding:14px;

  }

  .step-item{

    align-items:flex-start;

  }

}

/* ==========================
   END OF FILE
========================== */