@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
}

@font-face {
  font-display: swap;
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
}

:root {
  --soniox-white: #fff;
  --soniox-gray-100: #f8f9fa;
  --soniox-gray-150: #f1f3f5;
  --soniox-gray-200: #e9ecef;
  --soniox-gray-300: #dee2e6;
  --soniox-gray-400: #ced4da;
  --soniox-gray-500: #adb5bd;
  --soniox-gray-600: #6c757d;
  --soniox-gray-700: #495057;
  --soniox-gray-800: #343a40;
  --soniox-gray-900: #212529;
  --soniox-black: #181818;
  --soniox-primary-base: #1881ff;
  --soniox-logo: #263971;
}

* {
  box-sizing: border-box;
  font-family: "Figtree", serif !important;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 16px;
}

.app {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.app-logo {
  display: flex;
  align-items: center;
  height: 60px;
  flex-grow: 0;
  flex-shrink: 0;
  text-decoration: none !important;
}

.app-logo > svg {
  display: block;
  height: 20px;
}

.app-logo > span {
  display: block;
  height: 20px;
  line-height: 24px;
  font-size: 22px;
  font-weight: 500;
  margin-left: 5px;
  text-transform: lowercase;
  color: var(--mantine-color-blue-4);
}

header {
  display: flex;
  align-items: center;
  height: 60px;
  padding: 0 16px;
  border-bottom: none;
}

main {
  height: 100%;
  padding: 36px;
}

.text-soniox-logo {
  color: var(--soniox-logo);
}

.text-soniox-logo-50 {
  color: #26397180;
}

a {
  color: var(--soniox-primary-base);
  text-decoration: none;
  font-size: 16px;
}

a:hover {
  text-decoration: underline;
}

.entrance {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.entrance-inner {
  width: 100%;
  max-width: 360px;
}

.manage {
  width: 100%;
}

.manage-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding-top: 100px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  display: block;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus {
  outline: 0;
  border: none;
}

*::placeholder {
  color: var(--soniox-gray-500);
}

button {
  padding: 12px 24px;
  background-color: var(--soniox-primary-base);
  color: var(--soniox-white);
  border: 0;
  border-radius: 16px;
  outline: 0;
  font-size: 16px;
  font-weight: 500;
  user-select: none;
  text-align: center;
  cursor: pointer;
  transition: all 200ms;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

button:hover {
  filter: brightness(90%);
}

button:disabled {
  opacity: 0.3;
  pointer-events: none;
}

a.social-provider {
  padding: 12px 24px;
  color: #000000;
  background: #f2f2f2;
  border-radius: 16px;
  outline: 0;
  font-size: 14px;
  font-weight: 500;
  user-select: none;
  text-align: center;
  cursor: pointer;
  transition: all 200ms;
  text-decoration: none;
}

a.social-provider:hover {
  text-decoration: none;
}

form label {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
}

form label.radiocheck {
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 0;
}

form .field {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  background: #f2f2f2;
  border-radius: 16px;
  padding: 12px 24px;
}

form .field input {
  border: none;
  font-size: 16px;
  font-weight: 400;
}

#id_password + span {
  display: none;
}

form .field > span {
  display: block;
  font-size: 13px;
}

form .field > span:empty {
  display: none;
  margin: 0;
}

nav {
  padding: 10px 0;
  border-bottom: 1px solid var(--soniox-gray-200);
  white-space: nowrap;
  overflow-x: auto;
}

nav a {
  display: inline-block;
  font-size: 13px;
  margin-right: 10px;
}

/* h1 {
  font-size: 24px;
  font-weight: 600;
  text-align: left;
  color: var(--soniox-logo);
} */

h2 {
  font-size: 20px;
  font-weight: 500;
}

hr {
  border: 0;
  padding: 0;
  height: 1px;
  background-color: var(--soniox-gray-200);
}

.center {
  text-align: center;
}

.auth-component {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  justify-content: start;
  width: 100%;
  gap: 20px;
}

.auth-component h1 {
  text-align: center;
  width: 100%;
}

.auth-component > p {
  text-align: left;
  color: var(--soniox-logo);
  margin-top: -16px;
  width: 100%;
}

form {
  width: 100%;
}

form label {
  font-size: 13px;
}

form .toggle-password {
  position: absolute;
  right: 12px;
  padding: 4px;
  cursor: pointer;
  color: var(--soniox-gray-500);
}

.auth-component form label:not(.radiocheck) {
  display: none;
}

.auth-component form button {
  width: 100%;
}

.errorlist {
  margin: 0;
  color: oklch(63.7% 0.237 25.331); /* tailwindcss red 500 */
  order: 10;
}

#submitFormButton {
  order: calc(infinity);
}

ul {
  font-size: 13px;
  padding: 0 32px;
  list-style-type: disc;
  list-style-position: outside;
}
