@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Manrope:wght@200..800&family=Outfit:wght@100..900&display=swap");
:root {
  --color-main: #b40fe1;

  /* --accent: #00aaff; */
  --accent-soft: rgba(0, 170, 255, 0.15);
  --accent: black;

  --bg: #f6f7f9;
  --card: #ffffff;
  --text: #111;
  --muted: #777;

  --max-width: 1250px;

  --max-padding: calc((100% - 1250px) / 2);

  --font-manrope: "Manrope", sans-serif;
  --font-oufit: "Outfit", sans-serif;
  --font-dm-sans: "DM Sans", sans-serif;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: var(--font-manrope);
  border: none;
  outline: none;
  stroke: none;
}

/* Global click bounce */
button,
.btn,
a.button,
input[type="button"],
input[type="submit"] {
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

button:active,
.btn:active,
a.button:active,
input[type="button"]:active,
input[type="submit"]:active {
  transform: scale(0.96);
}
/* Global click bounce */
html,
body {
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}
.not-found-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.not-found-container h1 {
  font-size: 4rem;
  font-family: var(--font-dm-sans);
  line-height: 1;
  font-weight: 700;
}
.not-found-container h3 {
  font-size: 1.3rem;
  font-family: var(--font-dm-sans);
  font-weight: 500;
  line-height: 2;
}
.not-found-container a {
  text-decoration: none;
  font-family: var(--font-oufit);
  background: var(--accent);
  padding: 8px 15px;
  border-radius: 80px;
  color: white;
  margin: 20px 0;
}
.user-page {
  width: 100%;
  background: white;
  max-width: 420px;
  height: 100%;
  overflow-x: auto;
  padding-bottom: 100px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
  min-height: 70px;
  background: white;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
}
nav h3 {
  font-size: 22px;
  cursor: pointer;
}
nav i {
  font-size: 22px;
  cursor: pointer;
}
.item-loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 10px;
}

.item-loader p {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.loader {
  width: 38px;
  height: 38px;
  border: 4px dotted rgba(0, 0, 0, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.page-bar {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  background: white;
  position: sticky;
  top: 0;
  z-index: 50;
}
.back-btn {
  font-size: 18px;
  cursor: pointer;
}
.user-page .page-title {
  font-size: 18px !important;
  width: 100%;
  margin-left: 10px;
}

/* otp view */

.otp-box {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
}

.otp-input {
  width: 44px !important;
  /* height: 50px; */
  text-align: center;
  font-size: 20px;
  border-radius: 8px;
  border: 1.5px solid #ccc;
  outline: none;
  margin: 0 !important;
  padding: 0 !important;
  aspect-ratio: 1/1 !important;
  flex: 1;
}

.otp-input:focus {
  border-color: #00aaff;
}
.chat-icon{
  position: fixed;
  right: 20px;
  bottom: 80px;
  z-index: 10px;
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50px;
  background: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-icon i{
  color: white;
  font-size: 18px;
}
