.elementor-7818 .elementor-element.elementor-element-17c984d{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f967216 *//* Wrapper untuk halaman auth */
.auth-page {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* Card Form */
.auth-card {
  width: 100%;
  max-width: 850px;      /* lebih lebar agar tidak miring seperti tadi */
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-sizing: border-box;
}

/* Judul tengah dan font lebih rapi */
.auth-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* Row dua kolom seperti form login */
.auth-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.auth-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.auth-group label {
  font-weight: 600;
  margin-bottom: 6px;
  font-family: "Segoe UI", Arial;
}

.auth-group input {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #c9c9c9;
  width: 100%;
  font-size: 15px;
}

/* Checkbox */
.auth-checkbox {
  margin: 15px 0;
  font-size: 14px;
}

/* Tombol */
.auth-btn {
  width: 100%;
  padding: 14px;
  background: #4CAF50;
  color: white;
  border-radius: 8px;
  border: none;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  margin-top: 5px;
  transition: 0.3s;
}

.auth-btn:hover {
  background: #3e8e41;
}/* End custom CSS */