/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

/* container tetap, tapi dirapikan */
.container {
  flex: 1;
  background: #a2c9ea;
  color: #333;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* TITLE */
.container h2 {
  margin-bottom: 20px;
  color: #1e293b;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

/* FORM */
form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* INPUT */
input {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  transition: 0.2s;
}

input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* BUTTON */
button {
  margin-top: 6px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #1e40af;
}

/* TEXT LINK */
p {
  margin-top: 16px;
  font-size: 14px;
  color: #475569;
}

p a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

p a:hover {
  text-decoration: underline;
}
.auth-wrapper {
  display: flex;
  min-height: 100vh;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
}

.auth-info {
  flex: 1;
  padding: 60px;
}

.auth-info h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.auth-info .tagline {
  font-size: 16px;
  margin-bottom: 20px;
  opacity: 0.9;
  color: rgb(213, 253, 126);
}

.auth-info ul {
  list-style: none;
  padding: 0;
}

.auth-info ul li {
  margin-bottom: 10px;
}

.auth-info .note {
  margin-top: 30px;
  font-size: 14px;
  opacity: 0.85;
  color: rgb(213, 253, 126);
}
/* CONTAINER KANAN */
.container {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  padding: 40px 35px;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
}

/* HEADER */
.header-register h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

.progress-container {
  display: flex;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #555;
  transition: 0.3s;
}

.step-dot.active {
  background: #4f46e5;
  color: #fff;
}

.line {
  flex: 1;
  height: 3px;
  background: #e0e0e0;
}

/* SECTION TITLE */
.section-title {
  margin: 25px 0 15px;
  font-weight: 600;
  font-size: 15px;
  color: #555;
}

/* INPUT */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="file"] {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.2s;
}

input:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* BUTTON */
button {
  border: none;
  cursor: pointer;
  border-radius: 10px;
  font-size: 14px;
  padding: 11px 16px;
  transition: 0.2s;
}

.btn-next,
.btn-submit {
  width: 100%;
  background: #4f46e5;
  color: #fff;
  font-weight: 500;
}

.btn-next:hover,
.btn-submit:hover {
  background: #4338ca;
}

.btn-back {
  background: #f1f1f1;
  color: #444;
}

.btn-back:hover {
  background: #e2e2e2;
}

.btn-add-kasir {
  margin-top: 10px;
  background: #eef2ff;
  color: #4f46e5;
  font-weight: 500;
}

.btn-add-kasir:hover {
  background: #dbeafe;
}

/* ACTION BUTTON GROUP */
.action-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 10px;
}

/* LOGO SECTION */
.logo-section label,
.kasir-section label {
  font-size: 13px;
  font-weight: 500;
  color: #555;
  display: block;
  margin-bottom: 8px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.logo-preview {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #aaa;
}

.logo-wrapper img {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

/* KASIR */
.kasir-item {
  padding: 12px;
  background: #fafafa;
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid #eee;
}

/* FOOTER */
.footer-text {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
  color: #666;
}

.footer-text a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
}

.footer-text a:hover {
  text-decoration: underline;
}

/* HIDDEN */
.hidden {
  display: none;
}


/* RESPONSIVE EXTRA (HP KECIL) */
@media (max-width: 768px) {
  .auth-wrapper {
    flex-direction: column;
  }

  .auth-info {
    padding: 30px;
    text-align: center;
  }

  .container {
    width: 100%;
    padding: 30px;
  }
}

