.container {
  width: 100%;
  min-height: 100vh;
  background: transparent;
}

.contentWrapper {
  max-width: 28rem;
  /* margin: 2rem auto 0; */
  background: transparent;
  border-radius: 0.5rem;
}

.title {
  font-size: 30px;
  /* font-weight: bold; */
  color: #0f2327;
  text-align: left;
  /* margin-bottom: 0.5rem; */
}

.statusContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.statusLabel {
  color: #0f2327;
  font-size: 12px;
  font-weight: bold;
  margin-right: 0.5rem;
}

.statusBadge {
  background-color: #ef4444;
  color: white;
  padding: 1px 2px;
  border-radius: 0.125rem;
  font-size: 9px;
  font-weight: 500;
}

.instruction {
  color: #0f2327;
  font-size: 12px;
  text-align: center;
  margin-bottom: 0.5rem;
}

.optionsContainer {
  background-color: #0f2327;
  margin-bottom: 0.5rem;
}

.buttonGroup {
  display: flex;
  gap: 1rem;
}

.optionButton {
  flex: 1;
  background: transparent;
  color: white;
  font-size: 12px;
  white-space: nowrap;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.optionButton:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.passwordSection {
  margin-bottom: 2px;
}

.passwordLabel {
  color: #0f2327;
  font-size: 12px;
  font-weight: bold;
  margin-top: -10px;
  text-align: center;
  margin-bottom: 0.5rem;
}

.passwordInput {
  width: 100%;
  padding: 3px;
  border: 1px solid #d1d5db;
  outline: none;
}

.passwordInput:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 0;
}

.buttonContainer {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}

.connectionButton {
  width: 118px;
  border-radius: 4px;
  background-color: #183f45;
  color: white;
  font-size: 12px;
  padding: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.connectionButton:hover {
  background-color: #374151;
}

.mobileSection {
  margin-top: 1rem;
}

.authCodeSection {
  margin-bottom: 1rem;
}

.authCodeInstruction {
  color: #0f2327;
  font-size: 12px;
  text-align: center;
  margin-bottom: 4px;
}

.authCodeDisplay {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.authDigit {
  font-size: 36px;
  font-weight: bold;
  color: #0f2327;
}

.downloadSection {
  text-align: center;
  margin-bottom: 1.5rem;
}

.downloadTitle {
  color: #0f2327;
  font-size: 12px;
  font-weight: bold;
  margin: 0;
}

.downloadDescription {
  color: #0f2327;
  font-size: 12px;
  margin-top: 4px;
}

.downloadButton {
  background-color: #183f45;
  color: white;
  font-size: 12px;
  padding: 0.25rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 0;
  transition: background-color 0.2s;
}

.downloadButton:hover {
  background-color: #374151;
}

.androidIcon {
  margin-right: 0.5rem;
  font-size: 12px;
  height: 12px;
  width: 10px;
}



.statusBadgeEnabled {
  background-color: #16a34a;
  color: white;
  padding: 1px 8px;
  border-radius: 4px;
  font-size: 9px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.statusBadgeEnabled:hover {
  background-color: #15803d;
}

.disableSectionWrapper {
  /* margin-top: 2rem; */
}

.disableSection {

}

.verifyTitle {
  font-size: 1.25rem;
  /* font-weight: 600; */
  color: #1f2937;
  text-align: center;
  margin-bottom: 0.5rem;
}

.verifySubtitle {
  color: #0f2327;
  text-align: center;
  /* margin-bottom: 12px; */
  font-size: 12px;
}

.otpContainer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.otpInput {
  width: 30px;
  height: 30px;
  padding: 5px;
  margin: 0 10px;
  font-size: 20px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  text-align: center;
  outline: none;
}

.otpInput:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
}
