/* === CLEAN & RESPONSIVE FORM === */
body.page-template-submit-dive-report {
  background: #f4f6fa;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
}

/* Container form utama */
.submit-page {
  max-width: 700px;
  width: 95%;
  margin: 50px auto;
  padding: 30px 25px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.submit-page h2, .submit-page h3 {
  text-align: center;
  color: #003366;
  margin-bottom: 18px;
  font-weight: 700;
}

.submit-page label {
  font-weight: 600;
  color: #003366;
  display: block;
  margin-top: 12px;
}

.submit-page input,
.submit-page textarea,
.submit-page select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
  transition: all 0.2s ease;
}

.submit-page input:focus,
.submit-page textarea:focus {
  border-color: #0055aa;
  outline: none;
  box-shadow: 0 0 4px rgba(0,85,170,0.2);
}

/* Tombol kirim */
.submit-page button {
  width: 100%;
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 14px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.1s ease;
}

.submit-page button:hover {
  background-color: #0055aa;
  transform: translateY(-2px);
}

/* Password box */
.password-box {
  text-align: center;
  margin: 100px auto;
  background: #fff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  max-width: 400px;
}

.password-box input {
  width: 80%;
  padding: 12px;
  margin-top: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 15px;
}

.password-box button {
  width: 85%;
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 8px;
  margin-top: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

.password-box button:hover {
  background-color: #0055aa;
}

/* --- RESPONSIVE UNTUK HP --- */
@media (max-width: 768px) {
  .submit-page {
    width: 94%;
    margin: 20px auto;
    padding: 20px 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .submit-page h2, .submit-page h3 {
    font-size: 18px;
  }

  .submit-page input,
  .submit-page textarea {
    font-size: 15px;
    padding: 10px;
  }

  .submit-page button {
    font-size: 15px;
    padding: 12px;
  }

  .password-box {
    width: 90%;
    padding: 25px 15px;
  }

  .password-box input {
    width: 100%;
  }

  .password-box button {
    width: 100%;
  }
}


.field span.unit {
  color: #666;
  font-size: 12px;
  margin-left: 2px;
}


.submit-page select {
  width: 100%;
  padding: 12px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
  background-color: #fff;
  box-sizing: border-box;
}

