
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Roboto', Arial, sans-serif
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f1f3f4;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 500px;
}

.logo {
  display: block;
  margin: 0 auto 20px auto;
  width: 75px;
}

h1 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 8px;
  color: #202124;
}

.subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--subtext-color);
  margin-bottom: 24px;
}
/* Input group */
.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #dadce0;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  background: transparent;
}

.form-group input:focus {
  border-color: #0b57d0;
  box-shadow: 0 0 0 1px #0b57d0;
}

.form-group label {
  position: absolute;
  left: 12px;
  top: 16px;
  font-size: 16px;
  color: #5f6368;
  transition: 0.2s ease;
  pointer-events: none;
  background: white;
  padding: 0 4px;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
  top: -8px;
  left: 8px;
  font-size: 12px;
  color: #0b57d0;
}

.link {
  color: #0b57d0;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}

.link:hover {
  text-decoration: underline;
}

.small {
  font-size: 12px;
  color: #5f6368;
  margin-bottom: 20px;
}

.small a {
  color: #0b57d0;
  text-decoration: none;
}

.actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
}

.actions a {
  color: #0b57d0;
  font-size: 14px;
  text-decoration: none;
}

.actions .btn {
  background: #0b57d0;
  color: #fff;
  border: none;
  padding: 10px 40px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
}

.actions .btn:hover {
  background: #0b57d0;
}

/* Step navigation */
.step {
  display: none;
}

.step.active {
  display: block;
}

/* Account info (step 2) */
.account-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #202124;
}

.account-info i {
  font-size: 28px;
  color: #5f6368;
}

/* Show password */
.show-pass {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 12px 0 20px 0;
  font-size: 14px;
  color: #202124;
}

.show-pass input[type="checkbox"] {
  width: 16px;
  height: 16px;
}

/* Footer */
.footer {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 400px;
  font-size: 12px;
  color: #5f6368;
}

.footer select {
  border: none;
  background: transparent;
  font-size: 12px;
  color: #5f6368;
}

.footer ul {
  list-style: none;
  display: flex;
  gap: 16px;
}

.footer ul li a {
  color: #5f6368;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 800px) {
  .card {
    max-width: 90%;
    padding: 30px;
  }
}

@media (max-width: 480px) {
  body {
    background: #fff;
  }
  .card {
    box-shadow: none;
    border-radius: 0;
    max-width: 100%;
    min-height: 100vh;
  }
  .footer {
    max-width: 100%;
    padding: 0 16px;
  }
}
.card svg {
    display: block;
    margin: 0 auto 24px;

}
  .dot-list {
    list-style: none;      /* hilangkan bawaan */
    padding-left: 20px;
    line-height: 1.6;
  }
  .dot-list li::before {
    content: "●";          /* titik bulat */
    font-weight: bold;     /* tebal */
    display: inline-block;
    width: 16px;           /* jarak ke teks */
    margin-left: -16px;
    color: #000;           /* bisa diganti warna */
  }
