.regus-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 10px 0;
  font-size: 0.8em;
}

.regus-form input,
.regus-form select,
.regus-form textarea {
  border: 1px solid #fff;
  padding: 10px;
  font-size: 1em;
  background-color: #ffffff;
}

.regus-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #ccc;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.regus-form input[type="checkbox"]:checked {
  background: #87bf00;
  border-color: #87bf00;
}

.regus-form input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 10px;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}


.regus-form label {
  color: #fff;
  cursor: pointer;
}

.regus-form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}

.regus-form-group-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}

.regus-form p {
  text-align: center;
  max-width: 700px;
  align-self: center;
  color: white;
  margin-top: 20px;
}

.button {
  width: 100%;
  align-self: center;
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cadastro-btn.button {
  background-color: #87bf00 !important;
  border-radius: 50px !important;
  max-width: 400px !important;
}

.regus-success {
  background-color: #87bf00;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.regus-error {
  background-color: #c00;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
}

.regus-field-error {
  color: #c00;
  font-size: 14px;
  margin-top: 0.25rem;
}

.bg-green {
  background-color: #87bf00;
}

.bg-white {
  background-color: #fff;
}

.regus-table-container {
  overflow-x: auto;
}

.regus-lead-search input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
  background-color: white;
}

.regus-table {
  width: 100%;
  border-collapse: collapse;
}

.regus-table thead tr {
  border-bottom: 1px solid #000;
}

.regus-table thead th {
  padding: 8px;
  text-align: left;
  font-weight: bold;
  color: #000;
  font-size: 14px;
  text-transform: uppercase;
}

.regus-table tbody td {
  padding: 5px;
  text-align: left;
  border-top:    1px solid #ccc;
  border-bottom: 1px solid #ccc;
  min-width: 80px;
  white-space: nowrap;
  font-size: 16px;
}

.regus-table tbody td span {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: 8px;
}

.regus-table tbody td.stage-complete span {
  background-color: #8BC34A;
}

.regus-table tbody td.stage-empty span {
  background-color: #fff;
}

.regus-table tbody td.stage-cell {
  border-right: 1px solid #ccc;
}

.regus-table tbody td.stage-cell:last-child {
  border-right: none;
}

.regus-lead-pagination {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 20px;
}

.regus-page-btn {
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #fff;
  cursor: pointer;
  color: #000;
}

.regus-page-btn.active {
    background-color: #8BC34A;
    color: #fff;
}

.schedule-a-visit {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

.regus-logout {
  display: inline-block;
  height: 100%;
  padding: 5px 25px;
  background-color: #606060;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.regus-logout:hover {
  color: #fff;
}

#regus-lead-list-container.loading {
    opacity: 0.5;
    pointer-events: none;
}

.register-anchor {
  display: none;
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .register-anchor {
    display: block;
  }
}
.register-anchor a {
  color: white;
  text-decoration: none;
}

.register-anchor a:hover {
  text-decoration: underline;
}