@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

* {
  /* UI */
  --ui-darkest: #121212;
  --ui-darker: #191919;
  --ui-dark: #1e1e1e;
  --ui-light: #242424;
  --ui-lighter: #2d2d2d;
  --ui-lightest: #3b3b3b;
  /* Text */
  --text-lightest: #ffffff;
  --text-lighter: #dedede;
  --text-light: #969696;
  --text-dark: #878787;
  --text-darker: #646464;
  /* Accents */
  --accent: #ff79c6;
  --accent-darker: #ff0083;
}

body {
  background-color: var(--ui-darkest);
  color: var(--text-lightest);
  font-family: "Inter", sans-serif !important;
  /*
  overflow-x: hidden;
  overflow-y: hidden;
  */
}

.header {
  padding: 15px !important;
  font-weight: 600;
  height: 5vh;
  position: absolute;
  display: flex;
  z-index: 999;
}

.header p {
  padding-left: 10px;
}

h6 {
  color: white;
}

#login-btn {
  margin-top: 15px;
}

#error-message {
  color: #e91e63;
  display: block;
  margin: 10px;
  font-size: large;
  max-width: fit-content;
}

.content {
  display: flex;
  width: 100vw;
  height: 95vh;
}

.auth {
  display: flex;
  width: 100vw;
  height: 100%;
  z-index: 20;
  position: absolute;
  background-color: var(--ui-darkest);
}

.app {
  width: 100vw;
  height: 90vh;
  z-index: 1;
}

.content-app {
  padding: 5rem;
}

.content-pad {
  padding: 5rem;
}

.content-app textarea {
  color: white !important;
  max-height: 70vh;
  background-color: var(--ui-dark);
  border: 1px solid var(--ui-light);
  resize: none;
}

.content-app textarea:read-only {
  color: white !important;
  max-height: 70vh;
  background-color: var(--ui-dark);
  border: 1px solid var(--ui-light);
  resize: none;
}

.content-app textarea:focus {
  /* height: 70vh; */
  background-color: var(--ui-dark);
  border: 1px solid var(--ui-light);
}

label {
  margin-top: 3rem;
  margin-bottom: 15px;
}

input {
  color: white !important;
  max-width: 60rem;
  background-color: var(--ui-dark) !important;
  border: 1px solid var(--ui-light) !important;
}

select {
  color: var(--text-lightest) !important;
  background-color: var(--ui-dark) !important;
  border: 1px solid var(--ui-light) !important;
}

*::-webkit-scrollbar {
  height: 1.2rem !important;
  width: 1.2rem !important;
  background: var(--ui-dark);
}
*::-webkit-scrollbar-thumb {
  border: 6px var(--ui-dark) solid;
  border-radius: 1rem !important;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--ui-lighter) !important;
}

.content-app button {
  margin-top: 10px;
}

.button-pink {
  flex-shrink: 0;
  background-color: rgb(255, 0, 131) !important;
  display: inline;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  width: fit-content;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: Inter;
  font-weight: 600;
  color: rgb(255, 255, 255);
  position: relative;
  background-color: rgb(54, 54, 54);
  opacity: 1;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  box-shadow: rgb(204 0 105 / 70%) 0px 10px 40px -10px;
  /* margin: 5rem; */
}

.button-pink:hover {
  opacity: 0.7;
}

.button-red {
  flex-shrink: 0;
  background-color: rgb(240, 70, 70) !important;
  display: inline;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  width: fit-content;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-family: Inter;
  font-weight: 600;
  color: rgb(255, 255, 255);
  position: relative;
  background-color: rgb(54, 54, 54);
  opacity: 1;
  transition: all 0.2s ease 0s;
  cursor: pointer;
  box-shadow: rgb(240 70 70 / 70%) 0px 10px 40px -10px;
  /* margin: 5rem; */
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
