/* --------------------------------------------- */
/* Import */
/*
  1. Use a more-intuitive box-sizing model.
*/
@import url("https://fonts.cdnfonts.com/css/roboto");
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  2. Remove default margin
*/
* {
  margin: 0;
  padding: 0;
  transition: all 300ms ease;
}

/*
  Typographic tweaks!
  3. Add accessible line-height
  4. Improve text rendering
*/
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/*
  5. Improve media defaults
*/
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/*
  6. Remove built-in form typography styles
*/
input,
button,
textarea,
select {
  font: inherit;
}

/*
  7. Avoid text overflows
*/
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

/*
  8. Create a root stacking context
*/
#root,
#__next {
  isolation: isolate;
}

/* --------------------------------------------- */
html,
body,
main {
  height: 100%;
  width: 100%;
}

body {
  background: rgb(129, 129, 129);
  background: linear-gradient(90deg, rgb(129, 129, 129) 0%, rgb(0, 0, 0) 100%);
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  cursor: auto;
}

/* Handle */
::-webkit-scrollbar-thumb {
  cursor: auto;
  background: #535353;
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgb(66, 66, 66);
}

main {
  display: grid;
  place-items: center;
}
main.accounts {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
main.accounts > div {
  flex-wrap: wrap;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
main .form {
  max-height: 300px;
  height: 92%;
  width: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
main .form.proxy {
  max-height: none;
  height: -moz-fit-content;
  height: fit-content;
  padding: 20px;
}
main .form.proxy .input__container {
  flex-direction: row;
  gap: 10px;
}
main .form.proxy label {
  width: 100px;
}
main .form.token {
  min-height: 255px;
}
main .form.token .token {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
main .form.token .token span {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #fff;
  width: 96%;
}
main .form.url {
  padding: 6px;
}
main .form.url .flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
main .form.url input {
  outline: none;
  border: none;
  background: none;
  border: 1px solid #fff;
  border-radius: 5px;
  height: 34px;
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
}
main .form.url #urlList {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
main .form.url #urlList div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
main .form.url #urlList div p {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
main .form h1 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
main .form .input__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
main .form .input__container label {
  font-size: 14px;
  color: #fff;
  font-weight: 400;
}
main .form .input__container input {
  border-radius: 6px;
  outline: none;
  border: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
  height: 30px;
  width: 100%;
  max-width: 180px;
}
main .form .input__container input:hover, main .form .input__container input:focus {
  background: rgba(255, 255, 255, 0.06);
}
main .form .input__container textarea {
  width: 96%;
  height: 150px;
  resize: none;
  outline: none;
  border: none;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: #fff;
  font-weight: 400;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
}
main .form .input__container textarea:hover, main .form .input__container textarea:focus {
  background: rgba(255, 255, 255, 0.1);
}
main .form button {
  outline: none;
  border: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 6px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 4px;
  padding-bottom: 4px;
  cursor: pointer;
  color: #fff;
}
main .form button:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------- *//*# sourceMappingURL=style.css.map */