.finalpos-activation-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: min(873px, 100%);
}

.finalpos-steps {
  display: flex;
  width: 100%;
  padding: 24px 24px 24px 0px;
  gap: 56px;
  align-items: center;
}

.finalpos-three-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.finalpos-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.finalpos-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: #f0f9ff;
  color: #0ea5e9;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.finalpos-step-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.finalpos-step-content h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--finalpos-base-blue);
}

.finalpos-step-content p {
  margin: 0;
  font-size: 12px;
  color: #758696;
  line-height: 1.5;
}

.finalpos-sync-options {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.finalpos-sync-option {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #64748b;
}

.finalpos-checkmark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.finalpos-checkmark img {
  width: 100%;
  height: auto;
}

.finalpos-auth-box {
  display: flex;
  justify-content: space-evenly;
  gap: 16px;
  width: 100%;
  gap: 56px;
  background-color: #f8fafc;
  border-radius: 8px;
  padding: 24px;
}

.finalpos-auth-instructions {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.finalpos-auth-instructions > p:first-child {
  font-size: 18px;
  font-weight: 600;
  color: #3d4c66;
  margin: 0;
}

.finalpos-auth-input-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.finalpos-auth-input-group input {
  width: 304px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #d9d1e0;
  background-color: #fff;
}

/* Style placeholder text */
.finalpos-auth-input-group input::placeholder {
  color: #758696;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.finalpos-no-account {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  width: 100%;
}

/* Sync Categories Styles */

.finalpos-sync-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  width: 100%;
}

.finalpos-sync-category {
  display: flex;
  align-items: center;
  padding: 16px;
  background-color: #ffffff;
  border-radius: 8px;
  gap: 16px;
  position: relative;
}

.finalpos-sync-category img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

.finalpos-sync-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.finalpos-sync-details p {
  margin: 0;
}

.finalpos-sync-terms {
  font-size: 12px;
  font-weight: 400;
  color: #2797e8;
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
}

/* Toggle switch styles */
.finalpos-toggle {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
}

.finalpos-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.finalpos-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: 0.4s;
  border-radius: 4px;
}

.finalpos-toggle-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border: 0.5px solid #0000000a;
  transition: 0.4s;
  border-radius: 3px;
  box-shadow: 0px 3px 8px 0px #00000026;
}

.finalpos-toggle input:checked + .finalpos-toggle-slider {
  background-color: #2797e8;
}

.finalpos-toggle input:checked + .finalpos-toggle-slider:before {
  transform: translateX(16px);
}

/* Sync form */
.finalpos-sync-form {
  margin-top: 32px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  padding: 20px;
}

.finalpos-button-secondary {
  background-color: #e2e8f0;
  color: var(--finalpos-base-blue);
}

.finalpos-button-secondary:hover {
  background-color: #cbd5e1;
  color: var(--finalpos-base-blue);
}

/* Company name styling */
.company-name-bold {
  font-weight: bold;
}

/* Updated styles for the settings view layout */
.finalpos-settings-section {
  display: flex;
  gap: 40px;
  width: 100%;
  padding: 20px;
}

.finalpos-settings-content {
  display: flex;
  gap: 32px;
}

.finalpos-settings-main {
  max-width: 800px;
}

.finalpos-text-large {
  font-size: 20px;
  font-weight: 500;
  color: #758696; /* base grey */
}

.finalpos-text-heading {
  font-size: 16px;
  font-weight: 400;
  color: var(--finalpos-base-blue);
  margin: 0 0 16px 0;
}

.finalpos-text-medium {
  font-size: 18px;
  font-weight: 500;
  color: var(--finalpos-base-blue);
  margin: 0;
}

.finalpos-text-small {
  font-size: 14px;
  font-weight: 300;
  color: #758696; /* base grey */
  margin: 0;
}

.finalpos-text-tiny {
  font-size: 12px;
  font-weight: 400;
  color: #2797e8; /* blue */
  margin: 0;
}

.finalpos-text-footer-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--finalpos-base-blue);
  margin: 24px 0 8px 0;
}

.finalpos-text-footer {
  font-size: 12px;
  font-weight: 400;
  color: var(--finalpos-base-blue);
  margin: 0;
}

.finalpos-settings-image-container {
  display: flex;
  max-width: 900px;
}

.finalpos-settings-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
