@font-face {
  font-family: arshia;
  src: url(../fonts/Alexandria/Alexandria-VariableFont_wght.ttf);
}

:root {
  --background: #689fff60;
  --surface: #ffffff;
  --surface-dark: #0077ff;
  --text-primary: #181a20;
  --text-secondary: #707a8a;
  --text-yellow: #003cff;
  --text-dark: #bfbfbf;
  --border: #e6e8eb;
  --border-secondary: #ededed;
  --button-background: #e6e6e6;
  --button-background-secondary: #f5f5f5;
  --button-text: #ffffff;
}

[data-theme=dark] {
  --background: #00aeff;
  --surface: #202630;
  --surface-dark: #1e2329;
  --text-primary: #eaecef;
  --text-secondary: #b7bdc6;
  --text-yellow: #181a20;
  --text-dark: #707a8a;
  --border: #2b3139;
  --border-secondary: #333b47;
  --button-background: #29313d;
  --button-background-secondary: #29313d;
  --button-text: #ffffff;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: arshia;
  color: #000;
  background-color: #7ECEC5;
}

body {
  padding-top: 100px;
  background-color: var(--background);
}
body > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
body > div > div:last-of-type {
  width: 425px;
  padding: 40px;
  border: 1px solid var(--border-secondary);
  border-radius: 20px;
  color: var(--text-primary);
}
body > div > div:last-of-type > div:first-of-type {
  height: 50px;
}
body > div > div:last-of-type > div:first-of-type > img {
  height: 100%;
  width: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}
body > div > div:last-of-type > div:nth-of-type(2) {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
body > div > div:last-of-type > div:nth-of-type(2) > div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px;
  border-radius: 3px;
  background-color: var(--border-secondary);
  cursor: pointer;
}
body > div > div:last-of-type > div:nth-of-type(2) > div > svg {
  width: 32px;
  height: 32px;
}
body > div > div:last-of-type > div:nth-of-type(3) {
  display: flex;
  align-items: center;
}
body > div > div:last-of-type > div:nth-of-type(3) > hr {
  flex: 1;
  border: none;
  height: 1px;
  background-color: var(--border-secondary);
}
body > div > div:last-of-type > div:nth-of-type(3) > div {
  padding: 15px;
}
body > div > div:last-of-type > div:nth-of-type(3) ~ div {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  padding: 10px;
  border: 1px solid var(--border-secondary);
  border-radius: 10px;
  cursor: pointer;
}
body > div > div:last-of-type > div:nth-of-type(3) ~ div > svg {
  position: absolute;
  left: 20px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
}
body > div > div:last-of-type > div:nth-of-type(4) ~ div {
  margin-top: 20px;
}
body > div > div:last-of-type > form {
  position: relative;
  margin-top: 32px;
}
body > div > div:last-of-type > form > div {
  font-size: 14px;
}
body > div > div:last-of-type > form > input[type=text] {
  width: 100%;
  height: 50px;
  margin-top: 5px;
  padding: 6px 10px;
  border: 1px solid var(--text-dark);
  outline: none;
  border-radius: 10px;
  font-size: 14px;
  background-color: transparent;
  color: var(--text-primary);
  caret-color: #03a7ff;
  transition: 300ms ease;
}
body > div > div:last-of-type > form > input[type=text]:focus, body > div > div:last-of-type > form > input[type=text]:hover {
  border: 1px solid #0bf0dd;
}
body > div > div:last-of-type > form > input[type=text]::-moz-placeholder {
  color: var(--text-dark);
}
body > div > div:last-of-type > form > input[type=text]::placeholder {
  color: var(--text-dark);
}
body > div > div:last-of-type > form > input[type=submit] {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-top: 24px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  background-color: #005eff;
  color: #181a20;
  cursor: pointer;
}
body > div > div:last-of-type > form > input[type=submit]:hover {
  opacity: 0.8;
}
body > div:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 150px;
  font-size: 14px;
  color: var(--text-primary);
}
body > div:nth-of-type(2) > div {
  padding: 10px;
  cursor: pointer;
}
body > div:nth-of-type(2) > div:hover {
  color: #7985eb;
}
body > div:nth-of-type(2) > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 5px;
}
body > div:nth-of-type(2) > div:first-of-type:hover > div:nth-of-type(2) {
  visibility: visible;
  opacity: 1;
}
body > div:nth-of-type(2) > div:first-of-type > svg {
  width: 20px;
  height: 20px;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) {
  position: fixed;
  bottom: 40px;
  right: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  height: auto;
  padding: 26px 26px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--surface);
  visibility: hidden;
  opacity: 0;
  transition: 300ms ease;
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.0588235294);
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > h4 {
  color: var(--text-dark);
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > div > input {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--text-dark);
  outline: none;
  border-radius: 5px;
  font-size: 14px;
  background-color: var(--surface);
  color: var(--text-primary);
  caret-color: #0f0bf068;
  transition: 300ms ease;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > div > input:focus, body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > div > input:hover {
  border: 1px solid #f0b90b;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul {
  width: 196px;
  height: 330px;
  overflow-y: scroll;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul::-webkit-scrollbar {
  width: 5px;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul::-webkit-scrollbar-track {
  background: transparent;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul::-webkit-scrollbar-thumb {
  background: var(--text-dark);
  border-radius: 10px;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul::-webkit-scrollbar-thumb:hover {
  background: #777;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul > li {
  padding: 13px 0;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul > li:hover {
  color: #0bf0c2;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(2) > ul > li:first-of-type {
  color: #0bf0d1;
}
body > div:nth-of-type(2) > div:first-of-type > div:nth-of-type(3) {
  display: none;
}
body > a {
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  color: #358efc;
}
body > a:hover {
  filter: brightness(120%);
}

@media all and (max-width: 768px) {
  body {
    padding: 0;
    align-items: baseline;
    padding: 8px 24px 16px;
    background-color: var(--surface);
  }
  body > div:first-of-type {
    width: 100%;
    padding: 0;
    border: none;
  }
  body > div:first-of-type > div:nth-of-type(2) > div:last-of-type {
    display: none;
  }
  body > div:last-of-type {
    width: 100%;
  }
  body > div:last-of-type > div:first-of-type:hover > div:nth-of-type(2) {
    visibility: hidden;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) {
    position: fixed;
    bottom: 0;
    right: 0;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 420px;
    height: auto;
    padding: 66px 26px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    background-color: var(--surface-dark);
    transition: 300ms ease;
    transform: translateX(100%);
    box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0.0588235294);
    cursor: default;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3):hover > svg {
    color: var(--text-primary);
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3).shown {
    transform: translateX(0);
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > svg {
    position: absolute;
    right: 25px;
    top: 25px;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > h4 {
    color: var(--text-dark);
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > div > input {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid var(--text-dark);
    outline: none;
    border-radius: 5px;
    font-size: 14px;
    background-color: var(--surface);
    color: var(--text-primary);
    caret-color: #0be5f0;
    transition: 300ms ease;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > div > input:focus, body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > div > input:hover {
    border: 1px solid #f0b90b;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul {
    overflow-y: scroll;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul::-webkit-scrollbar {
    width: 5px;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul::-webkit-scrollbar-track {
    background: transparent;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul::-webkit-scrollbar-thumb {
    background: var(--text-dark);
    border-radius: 10px;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul::-webkit-scrollbar-thumb:hover {
    background: blue;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul > li {
    padding: 13px 0;
    text-align: left;
    color: var(--text-primary);
    cursor: pointer;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul > li:hover {
    color: #f0b90b;
  }
  body > div:last-of-type > div:first-of-type > div:nth-of-type(3) > ul > li:first-of-type {
    color: #f0b90b;
  }
}/*# sourceMappingURL=signup.css.map */