:root {
  --colorprimary: #f37c07;
  --colorprimaryLight: #f79623;
  --colorprimaryDark: #f79623;
  --colorSecondary: #36c1cc;
  --colorSecondaryLight: #16abb7;
  --colorSecondaryDark: #2992a0;
  --colorSidebar: #3a3535;
  --colorSidebarHover: #28292b;
  --colorBodyBG: #f7f7f7;
  --colorInput: #171717;
  --colorInputBG: #f5f5f5;
  --colorInputBorder: #646464;
  --color3: #bfbfbf;
  --color4: #707070;

  --white: #ffffff;
  --black: #000000;
  --gray: #333;

  --customFont: "Poppins", sans-serif;
  --viewportHeight: 100vh;
  --viewportWidth: 100vw;
}
.ant-modal-wrap {
  z-index: 1039 !important;
}
.ant-input-search-button .anticon {
  vertical-align: 0 !important;
}
.anticon {
  vertical-align: 0.25em !important;
}
.link {
  cursor: pointer !important;
}
.ant-input[disabled] {
  color: rgba(0, 0, 0, 0.75) !important;
}

/* These go in your CSS file or inside a <style jsx> block if using CSS-in-JS */

.otp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.otp-modal-content {
  background: #fff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.otp-modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.otp-modal-text {
  font-size: 1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.otp-modal-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

