.login-separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: #9ca3af; /* abu-abu */
  font-size: 14px;
  margin: 20px 0;
}

.login-separator::before,
.login-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e5e7eb;
}

.login-separator:not(:empty)::before {
  margin-right: 12px;
}

.login-separator:not(:empty)::after {
  margin-left: 12px;
}

.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: 100%;
  padding: 12px 16px;

  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;

  text-decoration: none !important;
  font-size: 15px;
  font-weight: 600;
  color: #111827;

  cursor: pointer;
  transition: all 0.2s ease;
}

.auth-btn img {
  width: 20px;
  height: 20px;
}

.auth-btn:hover {
  background-color: #f9fafb;
  border-color: #d1d5db;
  color: #111827;
}

.auth-btn:active {
  transform: scale(0.98);
}
