* {
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg,#e8f5f1,#f4f7fb);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.container {
  width: 100%;
  max-width: 520px;
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,.08);
}

.logo {
  display: block;
  margin: 0 auto 14px;
  max-width: 120px;
}

h1, p {
  text-align: center;
}

input, textarea, select, button {
  width: 100%;
  padding: 15px;
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 15px;
}

textarea { min-height: 90px; }

button {
  background: linear-gradient(135deg,#10b981,#059669);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.terms-box {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 16px;
}

.terms-box a {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
}

#status {
  text-align: center;
  margin-top: 12px;
}

/* MODAL */
.modal {
  display: none; /* FIX UTAMA */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: #fff;
  width: 92%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  padding: 28px;
  border-radius: 16px;
  position: relative;
}

.close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 22px;
  cursor: pointer;
}

.modal-body {
  margin: 14px 0;
  line-height: 1.6;
}