@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap");
a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: initial;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}
body {
    line-height: 1;
    user-select: none;
}
ol,
ul {
    list-style: none;
}
blockquote,
q {
    quotes: none;
}
blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
.nice-form-group {
    --nf-input-size: 1rem;
    --nf-input-font-size: calc(var(--nf-input-size) * 0.875);
    --nf-small-font-size: calc(var(--nf-input-size) * 0.875);
    --nf-input-font-family: inherit;
    --nf-label-font-family: inherit;
    --nf-input-color: #20242f;
    --nf-input-border-radius: 0.25rem;
    --nf-input-placeholder-color: #929292;
    --nf-input-border-color: #c0c4c9;
    --nf-input-border-width: 1px;
    --nf-input-border-style: solid;
    --nf-input-border-bottom-width: 2px;
    --nf-input-focus-border-color: #3b4ce2;
    --nf-input-background-color: #f9fafb;
    /* --nf-input-background-color: rgb(232, 239, 241); */

    --nf-invalid-input-border-color: var(--nf-input-border-color);
    --nf-invalid-input-background-color: var(--nf-input-background-color);
    --nf-invalid-input-color: var(--nf-input-color);
    --nf-valid-input-border-color: var(--nf-input-border-color);
    --nf-valid-input-background-color: var(--nf-input-background-color);
    --nf-valid-input-color: inherit;
    --nf-invalid-input-border-bottom-color: red;
    --nf-valid-input-border-bottom-color: green;
    --nf-label-font-size: var(--nf-small-font-size);
    --nf-label-color: #374151;
    --nf-label-font-weight: 500;
    --nf-slider-track-background: #dfdfdf;
    --nf-slider-track-height: 0.25rem;
    --nf-slider-thumb-size: calc(var(--nf-slider-track-height) * 4);
    --nf-slider-track-border-radius: var(--nf-slider-track-height);
    --nf-slider-thumb-border-width: 2px;
    --nf-slider-thumb-border-focus-width: 1px;
    --nf-slider-thumb-border-color: #fff;
    --nf-slider-thumb-background: var(--nf-input-focus-border-color);
    display: block;
    margin-top: calc(var(--nf-input-size) * 1.5);
    line-height: 1;
    white-space: nowrap;
    --switch-orb-size: var(--nf-input-size);
    --switch-orb-offset: calc(var(--nf-input-border-width) * 2);
    --switch-width: calc(var(--nf-input-size) * 2.5);
    --switch-height: calc(var(--nf-input-size) * 1.25 + var(--switch-orb-offset));
}
.nice-form-group > label {
    font-weight: var(--nf-label-font-weight);
    display: block;
    color: var(--nf-label-color);
    font-size: var(--nf-label-font-size);
    font-family: var(--nf-label-font-family);
    margin-bottom: calc(var(--nf-input-size) / 2);
    white-space: normal;
}
.nice-form-group > label + small {
    font-style: normal;
}
.nice-form-group small {
    font-family: var(--nf-input-font-family);
    display: block;
    font-weight: 400;
    opacity: 0.75;
    font-size: var(--nf-small-font-size);
    margin-bottom: calc(var(--nf-input-size) * 0.75);
}
.nice-form-group small:last-child {
    margin-bottom: 0;
}
.nice-form-group > legend {
    font-weight: var(--nf-label-font-weight);
    display: block;
    color: var(--nf-label-color);
    font-size: var(--nf-label-font-size);
    font-family: var(--nf-label-font-family);
    margin-bottom: calc(var(--nf-input-size) / 5);
}
.nice-form-group > .nice-form-group {
    margin-top: calc(var(--nf-input-size) / 2);
}
.nice-form-group > input[type="checkbox"],
.nice-form-group > input[type="date"],
.nice-form-group > input[type="email"],
.nice-form-group > input[type="month"],
.nice-form-group > input[type="number"],
.nice-form-group > input[type="password"],
.nice-form-group > input[type="radio"],
.nice-form-group > input[type="search"],
.nice-form-group > input[type="tel"],
.nice-form-group > input[type="text"],
.nice-form-group > input[type="time"],
.nice-form-group > input[type="url"],
.nice-form-group > input[type="week"],
.nice-form-group > select,
.nice-form-group > textarea {
    background: var(--nf-input-background-color);
    font-family: inherit;
    font-size: var(--nf-input-font-size);
    border-bottom-width: var(--nf-input-border-width);
    font-family: var(--nf-input-font-family);
    box-shadow: none;
    border-radius: var(--nf-input-border-radius);
    border: var(--nf-input-border-width) var(--nf-input-border-style)
        var(--nf-input-border-color);
    border-bottom: var(--nf-input-border-bottom-width)
        var(--nf-input-border-style) var(--nf-input-border-color);
    color: var(--nf-input-color);
    width: 100%;
    padding: calc(var(--nf-input-size) * 0.75);
    height: calc(var(--nf-input-size) * 2.75);
    line-height: normal;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    transition: all 0.15s ease-out;
    --icon-padding: calc(var(--nf-input-size) * 2.25);
    --icon-background-offset: calc(var(--nf-input-size) * 0.75);
}
.nice-form-group
  > input[type="checkbox"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="date"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="email"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="month"]:required:not(:placeholder-shown):invalid,
.nice-form-group
  > input[type="number"]:required:not(:placeholder-shown):invalid,
.nice-form-group
  > input[type="password"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="radio"]:required:not(:placeholder-shown):invalid,
.nice-form-group
  > input[type="search"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="tel"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="text"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="time"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="url"]:required:not(:placeholder-shown):invalid,
.nice-form-group > input[type="week"]:required:not(:placeholder-shown):invalid,
.nice-form-group > select:required:not(:placeholder-shown):invalid,
.nice-form-group > textarea:required:not(:placeholder-shown):invalid {
  background-color: var(--nf-invalid-input-background-color);
  border-bottom-color: var(--nf-valid-input-border-color);
  border-color: var(--nf-valid-input-border-color)
    var(--nf-valid-input-border-color)
    var(--nf-invalid-input-border-bottom-color);
  color: var(--nf-invalid-input-color);
}
.nice-form-group
  > input[type="checkbox"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="date"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="email"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="month"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="number"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="password"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="radio"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="search"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="tel"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="text"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="time"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="url"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group
  > input[type="week"]:required:not(:placeholder-shown):invalid:focus,
.nice-form-group > select:required:not(:placeholder-shown):invalid:focus,
.nice-form-group > textarea:required:not(:placeholder-shown):invalid:focus {
  background-color: var(--nf-input-background-color);
  border-color: var(--nf-input-border-color);
  color: var(--nf-input-color);
}
.nice-form-group
  > input[type="checkbox"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="date"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="email"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="month"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="number"]:required:not(:placeholder-shown):valid,
.nice-form-group
  > input[type="password"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="radio"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="search"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="tel"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="text"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="time"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="url"]:required:not(:placeholder-shown):valid,
.nice-form-group > input[type="week"]:required:not(:placeholder-shown):valid,
.nice-form-group > select:required:not(:placeholder-shown):valid,
.nice-form-group > textarea:required:not(:placeholder-shown):valid {
  background-color: var(--nf-valid-input-background-color);
  border-bottom-color: var(--nf-valid-input-border-color);
  border-color: var(--nf-valid-input-border-color)
    var(--nf-valid-input-border-color) var(--nf-valid-input-border-bottom-color);
  color: var(--nf-valid-input-color);
}
.nice-form-group > input[type="checkbox"]:disabled,
.nice-form-group > input[type="date"]:disabled,
.nice-form-group > input[type="email"]:disabled,
.nice-form-group > input[type="month"]:disabled,
.nice-form-group > input[type="number"]:disabled,
.nice-form-group > input[type="password"]:disabled,
.nice-form-group > input[type="radio"]:disabled,
.nice-form-group > input[type="search"]:disabled,
.nice-form-group > input[type="tel"]:disabled,
.nice-form-group > input[type="text"]:disabled,
.nice-form-group > input[type="time"]:disabled,
.nice-form-group > input[type="url"]:disabled,
.nice-form-group > input[type="week"]:disabled,
.nice-form-group > select:disabled,
.nice-form-group > textarea:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}
.nice-form-group > input[type="checkbox"]::-webkit-input-placeholder,
.nice-form-group > input[type="date"]::-webkit-input-placeholder,
.nice-form-group > input[type="email"]::-webkit-input-placeholder,
.nice-form-group > input[type="month"]::-webkit-input-placeholder,
.nice-form-group > input[type="number"]::-webkit-input-placeholder,
.nice-form-group > input[type="password"]::-webkit-input-placeholder,
.nice-form-group > input[type="radio"]::-webkit-input-placeholder,
.nice-form-group > input[type="search"]::-webkit-input-placeholder,
.nice-form-group > input[type="tel"]::-webkit-input-placeholder,
.nice-form-group > input[type="text"]::-webkit-input-placeholder,
.nice-form-group > input[type="time"]::-webkit-input-placeholder,
.nice-form-group > input[type="url"]::-webkit-input-placeholder,
.nice-form-group > input[type="week"]::-webkit-input-placeholder,
.nice-form-group > select::-webkit-input-placeholder,
.nice-form-group > textarea::-webkit-input-placeholder {
  color: var(--nf-input-placeholder-color);
  letter-spacing: 0;
}
.nice-form-group > input[type="checkbox"]:-ms-input-placeholder,
.nice-form-group > input[type="date"]:-ms-input-placeholder,
.nice-form-group > input[type="email"]:-ms-input-placeholder,
.nice-form-group > input[type="month"]:-ms-input-placeholder,
.nice-form-group > input[type="number"]:-ms-input-placeholder,
.nice-form-group > input[type="password"]:-ms-input-placeholder,
.nice-form-group > input[type="radio"]:-ms-input-placeholder,
.nice-form-group > input[type="search"]:-ms-input-placeholder,
.nice-form-group > input[type="tel"]:-ms-input-placeholder,
.nice-form-group > input[type="text"]:-ms-input-placeholder,
.nice-form-group > input[type="time"]:-ms-input-placeholder,
.nice-form-group > input[type="url"]:-ms-input-placeholder,
.nice-form-group > input[type="week"]:-ms-input-placeholder,
.nice-form-group > select:-ms-input-placeholder,
.nice-form-group > textarea:-ms-input-placeholder {
  color: var(--nf-input-placeholder-color);
  letter-spacing: 0;
}
.nice-form-group > input[type="checkbox"]:-moz-placeholder,
.nice-form-group > input[type="checkbox"]::-moz-placeholder,
.nice-form-group > input[type="date"]:-moz-placeholder,
.nice-form-group > input[type="date"]::-moz-placeholder,
.nice-form-group > input[type="email"]:-moz-placeholder,
.nice-form-group > input[type="email"]::-moz-placeholder,
.nice-form-group > input[type="month"]:-moz-placeholder,
.nice-form-group > input[type="month"]::-moz-placeholder,
.nice-form-group > input[type="number"]:-moz-placeholder,
.nice-form-group > input[type="number"]::-moz-placeholder,
.nice-form-group > input[type="password"]:-moz-placeholder,
.nice-form-group > input[type="password"]::-moz-placeholder,
.nice-form-group > input[type="radio"]:-moz-placeholder,
.nice-form-group > input[type="radio"]::-moz-placeholder,
.nice-form-group > input[type="search"]:-moz-placeholder,
.nice-form-group > input[type="search"]::-moz-placeholder,
.nice-form-group > input[type="tel"]:-moz-placeholder,
.nice-form-group > input[type="tel"]::-moz-placeholder,
.nice-form-group > input[type="text"]:-moz-placeholder,
.nice-form-group > input[type="text"]::-moz-placeholder,
.nice-form-group > input[type="time"]:-moz-placeholder,
.nice-form-group > input[type="time"]::-moz-placeholder,
.nice-form-group > input[type="url"]:-moz-placeholder,
.nice-form-group > input[type="url"]::-moz-placeholder,
.nice-form-group > input[type="week"]:-moz-placeholder,
.nice-form-group > input[type="week"]::-moz-placeholder,
.nice-form-group > select:-moz-placeholder,
.nice-form-group > select::-moz-placeholder,
.nice-form-group > textarea:-moz-placeholder,
.nice-form-group > textarea::-moz-placeholder {
  color: var(--nf-input-placeholder-color);
  letter-spacing: 0;
}
.nice-form-group > input[type="checkbox"]:focus,
.nice-form-group > input[type="date"]:focus,
.nice-form-group > input[type="email"]:focus,
.nice-form-group > input[type="month"]:focus,
.nice-form-group > input[type="number"]:focus,
.nice-form-group > input[type="password"]:focus,
.nice-form-group > input[type="radio"]:focus,
.nice-form-group > input[type="search"]:focus,
.nice-form-group > input[type="tel"]:focus,
.nice-form-group > input[type="text"]:focus,
.nice-form-group > input[type="time"]:focus,
.nice-form-group > input[type="url"]:focus,
.nice-form-group > input[type="week"]:focus,
.nice-form-group > select:focus,
.nice-form-group > textarea:focus {
  outline: none;
  border-color: var(--nf-input-focus-border-color);
}
.nice-form-group > input[type="checkbox"] + small,
.nice-form-group > input[type="date"] + small,
.nice-form-group > input[type="email"] + small,
.nice-form-group > input[type="month"] + small,
.nice-form-group > input[type="number"] + small,
.nice-form-group > input[type="password"] + small,
.nice-form-group > input[type="radio"] + small,
.nice-form-group > input[type="search"] + small,
.nice-form-group > input[type="tel"] + small,
.nice-form-group > input[type="text"] + small,
.nice-form-group > input[type="time"] + small,
.nice-form-group > input[type="url"] + small,
.nice-form-group > input[type="week"] + small,
.nice-form-group > select + small,
.nice-form-group > textarea + small {
  margin-top: 0.5rem;
}
.nice-form-group > input[type="checkbox"].icon-left,
.nice-form-group > input[type="date"].icon-left,
.nice-form-group > input[type="email"].icon-left,
.nice-form-group > input[type="month"].icon-left,
.nice-form-group > input[type="number"].icon-left,
.nice-form-group > input[type="password"].icon-left,
.nice-form-group > input[type="radio"].icon-left,
.nice-form-group > input[type="search"].icon-left,
.nice-form-group > input[type="tel"].icon-left,
.nice-form-group > input[type="text"].icon-left,
.nice-form-group > input[type="time"].icon-left,
.nice-form-group > input[type="url"].icon-left,
.nice-form-group > input[type="week"].icon-left,
.nice-form-group > select.icon-left,
.nice-form-group > textarea.icon-left {
  background-position: left var(--icon-background-offset) bottom 50%;
  padding-left: var(--icon-padding);
  background-size: var(--nf-input-size);
}
.nice-form-group > input[type="checkbox"].icon-right,
.nice-form-group > input[type="date"].icon-right,
.nice-form-group > input[type="email"].icon-right,
.nice-form-group > input[type="month"].icon-right,
.nice-form-group > input[type="number"].icon-right,
.nice-form-group > input[type="password"].icon-right,
.nice-form-group > input[type="radio"].icon-right,
.nice-form-group > input[type="search"].icon-right,
.nice-form-group > input[type="tel"].icon-right,
.nice-form-group > input[type="text"].icon-right,
.nice-form-group > input[type="time"].icon-right,
.nice-form-group > input[type="url"].icon-right,
.nice-form-group > input[type="week"].icon-right,
.nice-form-group > select.icon-right,
.nice-form-group > textarea.icon-right {
  background-position: right var(--icon-background-offset) bottom 50%;
  padding-right: var(--icon-padding);
  background-size: var(--nf-input-size);
}
.nice-form-group > input[type="checkbox"]:-webkit-autofill,
.nice-form-group > input[type="date"]:-webkit-autofill,
.nice-form-group > input[type="email"]:-webkit-autofill,
.nice-form-group > input[type="month"]:-webkit-autofill,
.nice-form-group > input[type="number"]:-webkit-autofill,
.nice-form-group > input[type="password"]:-webkit-autofill,
.nice-form-group > input[type="radio"]:-webkit-autofill,
.nice-form-group > input[type="search"]:-webkit-autofill,
.nice-form-group > input[type="tel"]:-webkit-autofill,
.nice-form-group > input[type="text"]:-webkit-autofill,
.nice-form-group > input[type="time"]:-webkit-autofill,
.nice-form-group > input[type="url"]:-webkit-autofill,
.nice-form-group > input[type="week"]:-webkit-autofill,
.nice-form-group > select:-webkit-autofill,
.nice-form-group > textarea:-webkit-autofill {
  padding: calc(var(--nf-input-size) * 0.75) !important;
}
.nice-form-group > input[type="search"]:placeholder-shown {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-search'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3C/svg%3E");
  background-position: left calc(var(--nf-input-size) * 0.75) bottom 50%;
  padding-left: calc(var(--nf-input-size) * 2.25);
  background-size: var(--nf-input-size);
  background-repeat: no-repeat;
}
.nice-form-group > input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  width: var(--nf-input-size);
  height: var(--nf-input-size);
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-x'%3E%3Cpath d='M18 6L6 18M6 6l12 12'/%3E%3C/svg%3E");
}
.nice-form-group > input[type="search"]:focus {
  padding-left: calc(var(--nf-input-size) * 0.75);
  background-position: left calc(var(--nf-input-size) * -1) bottom 50%;
}
.nice-form-group > input[type="email"][class^="icon"] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-at-sign'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M16 8v5a3 3 0 006 0v-1a10 10 0 10-3.92 7.94'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.nice-form-group > input[type="tel"][class^="icon"] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-phone'%3E%3Cpath d='M22 16.92v3a2 2 0 01-2.18 2 19.79 19.79 0 01-8.63-3.07 19.5 19.5 0 01-6-6 19.79 19.79 0 01-3.07-8.67A2 2 0 014.11 2h3a2 2 0 012 1.72 12.84 12.84 0 00.7 2.81 2 2 0 01-.45 2.11L8.09 9.91a16 16 0 006 6l1.27-1.27a2 2 0 012.11-.45 12.84 12.84 0 002.81.7A2 2 0 0122 16.92z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.nice-form-group > input[type="url"][class^="icon"] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-link'%3E%3Cpath d='M10 13a5 5 0 007.54.54l3-3a5 5 0 00-7.07-7.07l-1.72 1.71'/%3E%3Cpath d='M14 11a5 5 0 00-7.54-.54l-3 3a5 5 0 007.07 7.07l1.71-1.71'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.nice-form-group > input[type="password"] {
  letter-spacing: 2px;
}
.nice-form-group > input[type="password"][class^="icon"] {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-lock'%3E%3Crect x='3' y='11' width='18' height='11' rx='2' ry='2'/%3E%3Cpath d='M7 11V7a5 5 0 0110 0v4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
}
.nice-form-group > input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  cursor: pointer;
}
.nice-form-group > input[type="range"]:focus {
  outline: none;
}
.nice-form-group > input[type="range"]::-webkit-slider-runnable-track {
    width: 100%;
    height: var(--nf-slider-track-height);
    background: var(--nf-slider-track-background);
    border-radius: var(--nf-slider-track-border-radius);
}
.nice-form-group > input[type="range"]::-moz-range-track {
    width: 100%;
    height: var(--nf-slider-track-height);
    background: var(--nf-slider-track-background);
    border-radius: var(--nf-slider-track-border-radius);
}
.nice-form-group > input[type="range"]::-webkit-slider-thumb {
    height: var(--nf-slider-thumb-size);
    width: var(--nf-slider-thumb-size);
    border-radius: var(--nf-slider-thumb-size);
    background: var(--nf-slider-thumb-background);
    border: 0;
    border: var(--nf-slider-thumb-border-width) solid
        var(--nf-slider-thumb-border-color);
    -webkit-appearance: none;
    appearance: none;
    margin-top: calc(
        var(--nf-slider-track-height) * 0.5 - var(--nf-slider-thumb-size) * 0.5
    );
}
.nice-form-group > input[type="range"]::-moz-range-thumb {
    height: var(--nf-slider-thumb-size);
    width: var(--nf-slider-thumb-size);
    border-radius: var(--nf-slider-thumb-size);
    background: var(--nf-slider-thumb-background);
    border: 0;
    border: var(--nf-slider-thumb-border-width) solid
        var(--nf-slider-thumb-border-color);
    -moz-appearance: none;
    appearance: none;
    box-sizing: border-box;
}
.nice-form-group > input[type="range"]:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 var(--nf-slider-thumb-border-focus-width)
    var(--nf-slider-thumb-background);
}
.nice-form-group > input[type="range"]:focus::-moz-range-thumb {
  box-shadow: 0 0 0 var(--nf-slider-thumb-border-focus-width)
    var(--nf-slider-thumb-background);
}
.nice-form-group > input[type="color"] {
    border: var(--nf-input-border-width) solid var(--nf-input-border-color);
    border-bottom-width: var(--nf-input-border-bottom-width);
    height: calc(var(--nf-input-size) * 2);
    border-radius: var(--nf-input-border-radius);
    padding: calc(var(--nf-input-border-width) * 2);
}
.nice-form-group > input[type="color"]:focus {
    outline: none;
    border-color: var(--nf-input-focus-border-color);
}
.nice-form-group > input[type="color"]::-webkit-color-swatch-wrapper {
     padding: 5%;
}
.nice-form-group > input[type="color"]::-moz-color-swatch {
    border-radius: calc(var(--nf-input-border-radius) / 2);
    border: none;
}
.nice-form-group > input[type="color"]::-webkit-color-swatch {
  border-radius: calc(var(--nf-input-border-radius) / 2);
  border: none;
}
.nice-form-group > input[type="number"] {
  width: auto;
}
.nice-form-group > input[type="date"],
.nice-form-group > input[type="month"],
.nice-form-group > input[type="week"] {
  min-width: 14em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-calendar'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}
.nice-form-group > input[type="time"] {
  min-width: 6em;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-clock'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpath d='M12 6v6l4 2'/%3E%3C/svg%3E");
}
.nice-form-group > input[type="date"],
.nice-form-group > input[type="month"],
.nice-form-group > input[type="time"],
.nice-form-group > input[type="week"] {
    background-position: right calc(var(--nf-input-size) * 0.75) bottom 50%;
    background-repeat: no-repeat;
    background-size: var(--nf-input-size);
    width: auto;
}
.nice-form-group > input[type="date"]::-webkit-calendar-picker-indicator,
.nice-form-group > input[type="date"]::-webkit-inner-spin-button,
.nice-form-group > input[type="month"]::-webkit-calendar-picker-indicator,
.nice-form-group > input[type="month"]::-webkit-inner-spin-button,
.nice-form-group > input[type="time"]::-webkit-calendar-picker-indicator,
.nice-form-group > input[type="time"]::-webkit-inner-spin-button,
.nice-form-group > input[type="week"]::-webkit-calendar-picker-indicator,
.nice-form-group > input[type="week"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    cursor: pointer;
    opacity: 0;
}
@-moz-document url-prefix() {
  .nice-form-group > input[type="date"],
  .nice-form-group > input[type="month"],
  .nice-form-group > input[type="time"],
  .nice-form-group > input[type="week"] {
        min-width: auto;
        width: auto;
        background-image: none;
  }
}
.nice-form-group > textarea {
  height: auto;
}


.nice-form-group > input[type="checkbox"],
.nice-form-group > input[type="radio"] {
    width: var(--nf-input-size);
    height: var(--nf-input-size);
    padding: inherit;
    margin: 0;
    display: inline-block;
    vertical-align: top;
    border-radius: calc(var(--nf-input-border-radius) / 2);
    border-width: var(--nf-input-border-width);
    cursor: pointer;
    background-position: 50%;
}
.nice-form-group > input[type="checkbox"]:focus:not(:checked),
.nice-form-group > input[type="radio"]:focus:not(:checked) {
  border: var(--nf-input-border-width) solid var(--nf-input-focus-border-color);
  outline: none;
}
.nice-form-group > input[type="checkbox"]:hover,
.nice-form-group > input[type="radio"]:hover {
  border: var(--nf-input-border-width) solid var(--nf-input-focus-border-color);
}
.nice-form-group > input[type="checkbox"] + label,
.nice-form-group > input[type="radio"] + label {
    display: inline-block;
    margin-bottom: 0;
    padding-left: calc(var(--nf-input-size) / 2.5);
    font-weight: 400;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    max-width: calc(100% - var(--nf-input-size) * 2);
    line-height: normal;
}
.nice-form-group > input[type="checkbox"] + label > small,
.nice-form-group > input[type="radio"] + label > small {
  margin-top: calc(var(--nf-input-size) / 4);
}
.nice-form-group > input[type="checkbox"]:checked {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23FFF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E")
    no-repeat 50%/85%;
  background-color: var(--nf-input-focus-border-color);
  border-color: var(--nf-input-focus-border-color);
}
.nice-form-group > input[type="radio"] {
  border-radius: 100%;
}
.nice-form-group > input[type="radio"]:checked {
  background-color: var(--nf-input-focus-border-color);
  border-color: var(--nf-input-focus-border-color);
  box-shadow: inset 0 0 0 3px #fff;
}
.nice-form-group > input[type="checkbox"].switch {
    width: var(--switch-width);
    height: var(--switch-height);
    border-radius: var(--switch-height);
    position: relative;
}
.nice-form-group > input[type="checkbox"].switch:after {
    background: var(--nf-input-border-color);
    border-radius: var(--switch-orb-size);
    height: var(--switch-orb-size);
    left: var(--switch-orb-offset);
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: var(--switch-orb-size);
    content: "";
    transition: all 0.2s ease-out;
}
.nice-form-group > input[type="checkbox"].switch + label {
    margin-top: calc(var(--switch-height) / 8);
}
.nice-form-group > input[type="checkbox"].switch:checked {
    background: none;
    background-position: 0 0;
    background-color: var(--nf-input-focus-border-color);
}
.nice-form-group > input[type="checkbox"].switch:checked:after {
    -webkit-transform: translateY(-50%)
        translateX(calc(var(--switch-width) / 2 - var(--switch-orb-offset)));
    transform: translateY(-50%)
        translateX(calc(var(--switch-width) / 2 - var(--switch-orb-offset)));
    background: #fff;
}
.nice-form-group > input[type="file"] {
    background: rgba(0, 0, 0, 0.025);
    padding: var(--nf-input-size);
    display: block;
    width: 100%;
    border-radius: var(--nf-input-border-radius);
    border: 1px dashed var(--nf-input-border-color);
    outline: none;
    cursor: pointer;
}
.nice-form-group > input[type="file"]:focus,
.nice-form-group > input[type="file"]:hover {
    border-color: var(--nf-input-focus-border-color);
}
.nice-form-group > input[type="file"]::file-selector-button {
    background: var(--nf-input-focus-border-color);
    border: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0.5rem;
    border-radius: var(--nf-input-border-radius);
    color: #fff;
    margin-right: 1rem;
    outline: none;
    font-family: var(--nf-input-font-family);
    cursor: pointer;
}
.nice-form-group > input[type="file"]::-webkit-file-upload-button {
    background: var(--nf-input-focus-border-color);
    border: 0;
    -webkit-appearance: none;
    appearance: none;
    padding: 0.5rem;
    border-radius: var(--nf-input-border-radius);
    color: #fff;
    margin-right: 1rem;
    outline: none;
    font-family: var(--nf-input-font-family);
    cursor: pointer;
}
.nice-form-group > select {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-chevron-down'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-position: right calc(var(--nf-input-size) * 0.75) bottom 50%;
    background-repeat: no-repeat;
    background-size: var(--nf-input-size);
}
*,
:after,
:before {
    box-sizing: inherit;
}
html {
    font-size: 16px;
    box-sizing: border-box;
}
body {
  /* background: #f3f0e7; */
    background: rgb(232, 239, 241);
    font-family: Roboto, sans-serif;
    color: #4b5563;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.demo-page {
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    /* max-width: 55em; */
    max-width: 80em;

}
.demo-page .demo-page-navigation {
    /* width: 18em; */
    width: 20em;
    padding: 2em 1em;
}

section.timer{
  display: none;
}

/* Kalau Di Bawah Layar ini Hilang */
@media only screen and (max-width: 750px) {

  .demo-page-content{
    margin-top: 50px;
  }

  .demo-page .demo-page-navigation {
        display: none;
        /* flex: none; */
  }

  section.timer{
    /* background-color: rgba(230, 255, 253, 0.5); */
    padding: 20px 10px;
    display:block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 10;
    font-size: 16px;
  }

  .container-logo {
    display: grid;
    place-items: center; 
    /* margin: 100px 40px 40px 10px; */
    /* margin-top: 60px; */
  }

  .logo-bcl{
    /* margin-top: 40px; */
    width: 65% !important;
  }
}



.demo-page .demo-page-navigation nav {
    position: -webkit-sticky;
    position: sticky;
    top: 2em;
    background: #fff;
    padding: 0.5em;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.demo-page .demo-page-navigation a {
    display: -webkit-flex;
    display: flex;
    padding: 0.75em 1em;
    text-decoration: none;
    border-radius: 0.25em;
    color: #6a6c6e;
    -webkit-align-items: center;
    align-items: center;
    font-size: 15px;
}
.demo-page .demo-page-navigation a:hover {
    background: #f3f4f6;
}
.demo-page .demo-page-navigation a svg {
    width: 1.25em;
    height: 1.25em;
    margin-right: 1em;
    color: #1f2937;
}
.demo-page .demo-page-content {
    padding: 2em 1em;
    max-width: 100%;
}
@media only screen and (min-width: 750px) {
  .demo-page .demo-page-content {
    width: calc(100% - 18em);
  }
}
footer {
    text-align: center;
    margin: 2.5em 0;
}
.href-target {
    position: absolute;
    top: -2em;
}
.to-repo,
.to-reset {
    display: -webkit-inline-flex;
    display: inline-flex;
    background: #24292e;
    color: #fff;
    border-radius: 5px;
    padding: 0.5em 1em;
    text-decoration: none;
    -webkit-align-items: center;
    align-items: center;
    transition: background 0.2s ease-out;
}
.to-repo:hover,
.to-reset:hover {
    background: #000;
}
.to-repo svg,
.to-reset svg {
    width: 1.125rem;
    height: 1.125rem;
    margin-right: 0.75em;
}
.to-reset {
    background: #3b4ce2;
}
.to-reset:hover {
    background: #2538df;
}
section {
    background: #fff;
    padding: 2em;
    border-radius: 0.75rem;
    line-height: 1.6;
    overflow: hidden;
    margin-bottom: 2rem;
    position: relative;
    font-size: 0.875rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
section h1 {
    font-weight: 500;
    font-size: 1.25rem;
    color: #000;
    margin-bottom: 0.75rem;
}
section h1 svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -10%;
    margin-right: 0.25em;
}
section h1.package-name {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    margin-top: -0.5rem;
}
section strong {
    font-weight: 500;
    color: #000;
}
section p {
    margin: 0.5rem 0 1.5rem;
}
section p a {
  text-decoration: none;
  font-weight: 500;
  color: #3b4ce2;
}
section p:last-child {
  margin-bottom: 0;
}
section code {
    font-weight: 500;
    font-family: Consolas, monaco, monospace;
    position: relative;
    z-index: 1;
    margin: 0 2px;
    background: #f3f4f4;
    content: "";
    border-radius: 3px;
    padding: 2px 5px;
    white-space: nowrap;
}
section ul {
    margin-top: 0.5em;
    padding-left: 1em;
    list-style-type: disc;
}
details {
    background: #f1f1f1;
    margin: 2em -2em -2em;
    padding: 1.5em 2em;
}
details .gist {
    margin-top: 1.5em;
}
details .toggle-code {
  width: 100%;
    display: inline-block;
    /* padding: 0.5em 1em; */
    padding: 10px 5px;
    border-radius: 5px;
    font-size: 18px;
    background: #10b981;
    top: 1em;
    right: 1em;
    color: #fff;
    font-weight: 500;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    border: none;
    outline: none; 
    /* Remove default focus outline */
    /* Additional styling */

}
details .toggle-code:hover {
    background: #0ea271;
}
details .toggle-code svg {
    display: inline-block;
    vertical-align: -15%;
    margin-right: 0.25em;
}
details summary {
    outline: none;
    list-style-type: none;
}
details summary::marker {
    display: none;
}
details summary::-webkit-details-marker {
    display: none;
}


/* Keyboard */

.keyboard-button {
    /* Add styles to make it look like a keyboard button */
    width: 65%;
    display: inline-block;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: bold;
    border: 1px solid #ccc;
    background-color: #f0f0f0;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.2);

  }
  
  .keyboard-button:hover {
    background-color: #4ab2ee;
  }

  .keyboard-button:active  {
    background-color: #f0f0f0 !important;
  }

  /* .keyboard-button:visited  {
    background-color: #e01212 !important;
  } */
  
  .container-kraeplin{
    width: 100%;
    height: 50%;
    padding: 20px;
    /* border: none; */
    border: 2px solid #696969;
    border-radius: 25px;
  }

  .centered-sentence{
    text-align: center;
    font-size: 24px;
  }

  .change{
    filter: blur(2px);
  }
  
  .table-soal {
    display: table;
    width: 100%;
    /* border: none; */
    border: 2px solid #696969;
    border-radius: 25px;
    
  }
  
  .row-soal  {
    display: table-row;
    width: 50%;
    border: none;
    /* border: 1px solid #ec0b0b; */
  
  }
  
  .cell-soal  {
    display: table-cell;
    padding: 5px;
    width: 50%;
    /* border: 1px solid #ec0b0b; */
    border: none;
  
    
  }
  
  .cell-soal.blank {
    /* background-color: #ffffff;  */
    /* Add background color or any styling to indicate it's blank */
  }
  
  .right-align {
    text-align: right;
  }
  
  .left-align {
    text-align: right;
  }
  
  .soal{
    font-size: 24px;
    color: #000000;
  }
  
  .warning{
    background-color:#ffeaa5;
    border-radius: 10px;
  }
  /* Keyoard */
  .table-container {
    margin-top: 3%;
    overflow-x: auto;
  }
  
  table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }
  
  th, td {
    /* border: 1px solid #ccc; */
    border: none;
    padding: 8px;
    text-align: center;
  }
  
  /* Optional: If you want to apply a different style to the header cells */
  th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  
  /* Optional: Add media query for better display on smaller screens */
  @media only screen and (max-width: 600px) {
    table {
      table-layout: auto;
    }
  
    th, td {
      width: auto;
    }
  }



  .center{
    display: flex;
    justify-content: center; 
    align-items: center;
  }

  .logo-bcl{
    width: 40%;
  }

  .container-logo {
    display: grid;
    place-items: center; 
    margin: 20px 40px 40px 10px;
  }
  
  .sidebar{
    line-height: 1.5rem;
  }

  .angka{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:25px;
    height:25px;
    border-radius:50%;
    background-color:rgb(232, 239, 241);
    color:#070707;
  }

  .number-explanation {
    display: flex;
    align-items: center;
  }
  
  .number {
    font-size: 20px;
    font-weight: bold;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
    margin-right: 5px;
  }
  
  .explanations p {
    margin: 0;
    padding: 5px 10px;
    /* background-color: #f0f0f0;
    border: 1px solid #ccc; */
    border-radius: 5px;
    line-height:normal;
  }

/* SOal DISC */
.table-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.table {
  width: calc(50% - 10px); /* 50% width with a gap of 20px in between */
  box-sizing: border-box;
  border: 1px solid #ccc;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;

}

th {
  background-color: #f2f2f2;
}

@media screen and (max-width: 600px) {
  .table {
      width: 100%;
  }
}

.disc-inline-alert {
  background: #fff4d8;
  border: 1px solid #f2d58b;
  color: #815c00;
}

.disc-test-section { padding-bottom: 1.5rem; }

.disc-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.disc-section-subtitle { margin: 8px 0 0; color: #5f7280; }

.disc-status-panel {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disc-status-chip,
.disc-autosave-status {
  border-radius: 14px;
  padding: 12px 14px;
}

.disc-status-chip {
  background: #f4fbfe;
  border: 1px solid #d9eaf0;
}

.disc-status-chip span {
  display: block;
  color: #5c7580;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.disc-status-chip strong { color: #13303d; font-size: 15px; }

.disc-autosave-status {
  background: #eef3f6;
  border: 1px solid #dde7eb;
  color: #59717d;
  font-weight: 500;
}

.disc-autosave-status.is-saving { background: #e7f7fc; border-color: #b9deeb; color: #0d6b87; }
.disc-autosave-status.is-saved { background: #edf9ef; border-color: #cae9cf; color: #1f7a33; }
.disc-autosave-status.is-error { background: #fff1f1; border-color: #f2c8c8; color: #a23434; }

.disc-page,
.epps-page,
.wpt-page { display: none; }
.disc-page.is-active,
.epps-page.is-active,
.wpt-page.is-active { display: block; }

.disc-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.disc-question-card {
  border: 1px solid #d8e3e8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.disc-question-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.disc-question-table .disc-choice-col { width: 52px; }

.disc-question-table th,
.disc-question-table td {
  border: 1px solid #dfe7eb;
  padding: 10px 12px;
}

.disc-question-number {
  text-align: center;
  font-size: 20px;
  color: #163543;
}

.disc-question-table th {
  background: #f7fafb;
  color: #475866;
  font-weight: 700;
}

.disc-choice-head,
.disc-choice-cell {
  text-align: center;
  white-space: nowrap;
  padding-left: 6px;
  padding-right: 6px;
}

.disc-text-cell { color: #556574; line-height: 1.55; }
.disc-choice-cell input { width: 16px; height: 16px; }

.disc-pagination {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7fafb;
  border: 1px solid #dce8ed;
}

.disc-pagination-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #607884;
}

.disc-pagination-text strong { color: #143341; }

.disc-pagination-button {
  min-width: 130px;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  background: #13303d;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.disc-pagination-button:disabled {
  background: #d7e1e5;
  color: #738995;
  cursor: not-allowed;
}

.disc-submit-bar {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #f7fafb;
  border: 1px solid #dce8ed;
}

.disc-submit-bar p { margin: 0 0 12px; color: #5c7480; }

.disc-submit-bar .toggle-code {
  margin-top: 0;
  width: 100%;
  display: inline-block;
  padding: 10px 5px;
  border-radius: 5px;
  font-size: 18px;
  background: #10b981;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
}

.disc-submit-bar .toggle-code:hover { background: #0ea271; }

.epps-table-stack { display: block; }

.epps-question-card {
  margin-bottom: 18px;
  border: 1px solid #d8e3e8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.epps-card-header {
  padding: 14px 16px;
  text-align: center;
  background: #f7fafb;
  border-bottom: 1px solid #dfe7eb;
  color: #163543;
}

.epps-card-header .card-title { font-size: 18px; }
.epps-question-card .table-epps,
.epps-question-card table { width: 100%; }
.epps-question-card th,
.epps-question-card td { border: 1px solid #dfe7eb; }

@media only screen and (max-width: 900px) {
  .disc-section-head,
  .disc-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .disc-status-panel { min-width: 0; }
}

@media only screen and (max-width: 700px) {
  .disc-table-grid { grid-template-columns: 1fr; }
  .disc-question-table { table-layout: auto; }
  .disc-question-table .disc-choice-col { width: 44px; }
  .disc-question-number { font-size: 18px; }
  .disc-question-table th,
  .disc-question-table td { padding: 10px; }
  .disc-pagination-button { width: 100%; }
  .epps-card-header { padding: 12px 14px; }
  .epps-card-header .card-title { font-size: 16px; }
}
.tes-card-meta span {
  display: block;
  font-size: 11px;
  color: #67818d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.tes-card-meta strong {
  font-size: 14px;
  color: #143341;
}

.tes-card-complete,
.tes-card-progress,
.tes-guide-note,
.tes-guide-finished {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border-radius: 14px;
}

.tes-card-complete,
.tes-guide-finished {
  background: #edf9ef;
  color: #1f7a33;
}

.tes-card-progress,
.tes-guide-note {
  background: #f4fbfe;
  color: #176f88;
}

.tes-card-complete i,
.tes-card-progress i,
.tes-guide-note i,
.tes-guide-finished i {
  margin-top: 3px;
}

.tes-card-action,
.tes-guide-start,
.tes-guide-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.tes-card-action {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  background: #13303d;
  color: #ffffff;
  font-weight: 700;
}

.tes-card-action:hover,
.tes-guide-start:hover:not(:disabled),
.tes-guide-back:hover {
  transform: translateY(-1px);
}

.tes-card-action.is-disabled {
  background: #dfe8ec;
  color: #7b919b;
  cursor: not-allowed;
}

.tes-hub-footer {
  text-align: center;
  margin-top: 28px;
  color: #6b8590;
  font-size: 14px;
}

.tes-guide-header-card {
  padding: 24px;
  margin-bottom: 24px;
}

.tes-guide-back {
  color: #175d74;
  font-weight: 700;
  margin-bottom: 20px;
}

.tes-guide-headline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.tes-guide-summary {
  min-width: 240px;
  border-radius: 20px;
  padding: 18px;
  background: #f6fafb;
  color: #163543;
  border: 1px solid #dce9ee;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tes-guide-summary.is-complete {
  background: #edf9ef;
  color: #1f7a33;
  border-color: #9ed7a6;
}

.tes-guide-summary.is-progress {
  background: #fff8e8;
  color: #8f5d11;
  border-color: #f0c36b;
}

.tes-guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: 20px;
}

.tes-guide-content-card,
.tes-guide-camera-card {
  background: #ffffff;
  border: 1px solid #d9e5ea;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(19, 48, 61, 0.07);
}

.tes-guide-content-card h2,
.tes-guide-camera-card h2 {
  font-size: 24px;
  line-height: 1.25;
  color: #143341;
  margin-bottom: 12px;
}

.tes-guide-list {
  list-style: decimal;
  margin: 0 0 18px 22px;
  padding: 0;
}

.tes-guide-list li {
  margin-bottom: 10px;
  line-height: 1.7;
  color: #58717d;
}

.tes-guide-camera-text,
.tes-guide-note p {
  color: #58717d;
  line-height: 1.7;
  margin: 0;
}

.tes-guide-participant {
  margin-top: 10px;
  color: #355260;
}

.tes-guide-participant strong {
  color: #13303d;
}

.tes-guide-video {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 16px 0;
  border-radius: 18px;
  object-fit: cover;
  background: #113341;
}

.tes-guide-camera-status {
  border-radius: 14px;
  padding: 14px 16px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 16px;
}

.tes-guide-camera-status.is-waiting { background: #eef4f7; color: #5f7784; }
.tes-guide-camera-status.is-loading { background: #e7f7fc; color: #0d6b87; }
.tes-guide-camera-status.is-ready { background: #edf9ef; color: #1f7a33; }
.tes-guide-camera-status.is-error { background: #fff1f1; color: #a23434; }

.tes-guide-form { display: block; }

.tes-guide-start {
  width: 100%;
  padding: 16px 18px;
  border-radius: 16px;
  background: #13303d;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

.tes-guide-start:disabled {
  background: #cfdce2;
  color: #6f8791;
  cursor: not-allowed;
}

@media only screen and (max-width: 1100px) {
  .tes-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media only screen and (max-width: 900px) {
  .tes-hub-hero,
  .tes-guide-headline,
  .tes-guide-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tes-hub-identity,
  .tes-guide-summary { min-width: 0; }
}

@media only screen and (max-width: 700px) {
  .tes-hub-shell,
  .tes-guide-shell { padding: 16px 12px 28px; }
  .tes-hub-grid { grid-template-columns: 1fr; }
  .tes-hub-hero,
  .tes-guide-header-card,
  .tes-guide-content-card,
  .tes-guide-camera-card,
  .tes-card {
    padding: 16px;
    border-radius: 16px;
  }
  .tes-hub-hero h1,
  .tes-guide-headline h1 { font-size: 24px; }
  .tes-card h2 { font-size: 20px; }
  .tes-card-meta { grid-template-columns: 1fr; }
  .tes-hub-identity {
    flex-direction: column;
    align-items: flex-start;
  }
  .tes-hub-logo { width: 72px; }
}

.disc-inline-alert {
  background: #fff4d8;
  border: 1px solid #f2d58b;
  color: #815c00;
}

.disc-test-section { padding-bottom: 1.5rem; }

.disc-section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.disc-section-subtitle { margin: 8px 0 0; color: #5f7280; }

.disc-status-panel {
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.disc-status-chip,
.disc-autosave-status {
  border-radius: 14px;
  padding: 12px 14px;
}

.disc-status-chip {
  background: #f4fbfe;
  border: 1px solid #d9eaf0;
}

.disc-status-chip span {
  display: block;
  color: #5c7580;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.disc-status-chip strong { color: #13303d; font-size: 15px; }

.disc-autosave-status {
  background: #eef3f6;
  border: 1px solid #dde7eb;
  color: #59717d;
  font-weight: 500;
}

.disc-autosave-status.is-saving { background: #e7f7fc; border-color: #b9deeb; color: #0d6b87; }
.disc-autosave-status.is-saved { background: #edf9ef; border-color: #cae9cf; color: #1f7a33; }
.disc-autosave-status.is-error { background: #fff1f1; border-color: #f2c8c8; color: #a23434; }

.disc-page,
.epps-page,
.wpt-page { display: none; }
.disc-page.is-active,
.epps-page.is-active,
.wpt-page.is-active { display: block; }

.disc-table-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.disc-question-card {
  border: 1px solid #d8e3e8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.disc-question-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.disc-question-table .disc-choice-col { width: 52px; }

.disc-question-table th,
.disc-question-table td {
  border: 1px solid #dfe7eb;
  padding: 10px 12px;
}

.disc-question-number {
  text-align: center;
  font-size: 20px;
  color: #163543;
}

.disc-question-table th {
  background: #f7fafb;
  color: #475866;
  font-weight: 700;
}

.disc-choice-head,
.disc-choice-cell {
  text-align: center;
  white-space: nowrap;
  padding-left: 6px;
  padding-right: 6px;
}

.disc-text-cell { color: #556574; line-height: 1.55; }
.disc-choice-cell input { width: 16px; height: 16px; }

.disc-pagination {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f7fafb;
  border: 1px solid #dce8ed;
}

.disc-pagination-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #607884;
}

.disc-pagination-text strong { color: #143341; }

.disc-pagination-button {
  min-width: 130px;
  border: none;
  border-radius: 12px;
  padding: 12px 16px;
  background: #13303d;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.disc-pagination-button:disabled {
  background: #d7e1e5;
  color: #738995;
  cursor: not-allowed;
}

.disc-submit-bar {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #f7fafb;
  border: 1px solid #dce8ed;
}

.disc-submit-bar p { margin: 0 0 12px; color: #5c7480; }

.disc-submit-bar .toggle-code {
  margin-top: 0;
  width: 100%;
  display: inline-block;
  padding: 10px 5px;
  border-radius: 5px;
  font-size: 18px;
  background: #10b981;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
}

.disc-submit-bar .toggle-code:hover { background: #0ea271; }

.epps-table-stack { display: block; }

.epps-question-card {
  margin-bottom: 18px;
  border: 1px solid #d8e3e8;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.epps-card-header {
  padding: 14px 16px;
  text-align: center;
  background: #f7fafb;
  border-bottom: 1px solid #dfe7eb;
  color: #163543;
}

.epps-card-header .card-title { font-size: 18px; }
.epps-question-card .table-epps,
.epps-question-card table { width: 100%; }
.epps-question-card th,
.epps-question-card td { border: 1px solid #dfe7eb; }

@media only screen and (max-width: 900px) {
  .disc-section-head,
  .disc-pagination {
    flex-direction: column;
    align-items: stretch;
  }
  .disc-status-panel { min-width: 0; }
}

@media only screen and (max-width: 700px) {
  .disc-table-grid { grid-template-columns: 1fr; }
  .disc-question-table { table-layout: auto; }
  .disc-question-table .disc-choice-col { width: 44px; }
  .disc-question-number { font-size: 18px; }
  .disc-question-table th,
  .disc-question-table td { padding: 10px; }
  .disc-pagination-button { width: 100%; }
  .epps-card-header { padding: 12px 14px; }
  .epps-card-header .card-title { font-size: 16px; }
}

.tes-back-link-wrap { margin-top: 14px; }
.tes-back-link-wrap.is-mobile { display: none; margin-bottom: 16px; }

.demo-page .demo-page-navigation .tes-back-link,
.demo-page .demo-page-navigation .tes-back-link:visited,
.tes-back-link {
  display: inline-flex;
  width: 100%;
  min-width: 130px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: #13303d !important;
  color: #ffffff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: none;
}

.demo-page .demo-page-navigation .tes-back-link:hover,
.demo-page .demo-page-navigation .tes-back-link:focus,
.tes-back-link:hover,
.tes-back-link:focus {
  background: #13303d !important;
  color: #ffffff !important;
  transform: none;
}

.tes-back-link span,
.tes-back-link i {
  color: #ffffff !important;
  opacity: 1 !important;
}

.tes-back-link i { font-size: 14px; }

@media only screen and (max-width: 750px) {
  .tes-back-link-wrap.is-mobile { display: block; }
}

.wpt-intro-card {
  margin-top: 18px;
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #dce8ed;
  box-shadow: 0 18px 36px rgba(19, 48, 61, 0.08);
}

.wpt-intro-body {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-top: 18px;
}

.wpt-intro-copy,
.wpt-intro-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wpt-audio-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wpt-audio-stop {
  background: #e7eef2;
  color: #13303d;
}

.wpt-audio-note {
  color: #5c7480;
  line-height: 1.6;
}

.wpt-example-card {
  padding: 16px 18px;
  border-radius: 16px;
  background: #f8fbfc;
  border: 1px solid #dce8ed;
  color: #335160;
}

.wpt-example-card > strong {
  display: block;
  margin-bottom: 12px;
  color: #13303d;
}

.wpt-example-card > p {
  margin: 12px 0 0;
  line-height: 1.6;
}

.wpt-example-preview {
  padding: 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #dce8ed;
}

.wpt-answer-group-preview input[readonly] {
  background: #eff5f7;
  color: #13303d;
  cursor: default;
}

.wpt-camera-state {
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7fafb;
  border: 1px solid #dce8ed;
  color: #5c7480;
  font-weight: 600;
}

.wpt-camera-state.is-ready {
  background: #eaf8f0;
  border-color: #bde3c7;
  color: #0c7a43;
}

.wpt-start-button {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 14px 16px;
  background: #13303d;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.wpt-test-shell.is-hidden { display: none; }

.wpt-question-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.wpt-question-card {
  border: 1px solid #d8e3e8;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.wpt-question-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wpt-question-image {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  border-radius: 14px;
  background: #f8fbfc;
}

.wpt-answer-group { margin-top: 0; }
.wpt-answer-group > label { margin-bottom: 8px; }
.wpt-answer-input { text-transform: none; }

@media only screen and (max-width: 900px) {
  .wpt-intro-body,
  .wpt-question-grid {
    grid-template-columns: 1fr;
  }
}
body {
  background-color: #f7f5ef;
  background-image:
    linear-gradient(rgba(169, 160, 138, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 160, 138, 0.16) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
}

.tes-hub-page,
.tes-guide-page {
  background-color: #f7f5ef;
  background-image:
    linear-gradient(rgba(169, 160, 138, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 160, 138, 0.16) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0;
  min-height: 100vh;
}
body {
  background: rgb(232, 239, 241);
}

.tes-hub-page,
.tes-guide-page {
  background: linear-gradient(180deg, #edf4f7 0%, #f8fbfc 100%);
  min-height: 100vh;
}

.tes-hub-shell,
.tes-guide-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 16px 36px;
}

.tes-hub-hero,
.tes-guide-header-card {
  background: #ffffff;
  border: 1px solid #d9e5ea;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(26, 54, 73, 0.08);
}

.tes-hub-hero {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  margin-bottom: 18px;
}

.tes-hub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dff5fb;
  color: #11708d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.tes-hub-hero h1,
.tes-guide-headline h1 {
  font-size: 29px;
  line-height: 1.15;
  color: #13303d;
  margin-bottom: 8px;
}

.tes-hub-description,
.tes-guide-headline p {
  font-size: 14px;
  line-height: 1.6;
  color: #55717f;
  max-width: 680px;
}

.tes-hub-identity {
  min-width: 260px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, #13303d 0%, #1d5167 100%);
  color: #ffffff;
}

.tes-hub-logo {
  width: 72px;
  height: auto;
  object-fit: contain;
  background: #ffffff;
  border-radius: 14px;
  padding: 8px;
}

.tes-hub-identity-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tes-hub-identity-text span,
.tes-guide-summary span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.tes-hub-identity-text strong,
.tes-guide-summary strong {
  font-size: 17px;
  line-height: 1.4;
  color: inherit;
}

.tes-hub-identity-text small,
.tes-guide-summary small {
  font-size: 12px;
  line-height: 1.5;
  opacity: 0.85;
}

.tes-hub-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff4d8;
  border: 1px solid #f2d58b;
  color: #815c00;
  font-weight: 500;
}

.tes-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tes-card {
  background: #ffffff;
  border: 1px solid #d9e5ea;
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: 0 18px 40px rgba(19, 48, 61, 0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tes-card > * {
  margin: 0;
}

.tes-card.is-complete {
  border-color: #9ed7a6;
  background: linear-gradient(180deg, #ffffff 0%, #f5fcf6 100%);
}

.tes-card.is-progress {
  border-color: #f0c36b;
  background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
}

.tes-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.tes-card-label,
.tes-card-status {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.tes-card-label {
  background: #e9f7fb;
  color: #136780;
}

.tes-card-status {
  background: #eef2f4;
  color: #55717f;
}

.tes-card.is-complete .tes-card-status {
  background: #daf4dd;
  color: #1f7a33;
}

.tes-card.is-progress .tes-card-status {
  background: #fff0cd;
  color: #996515;
}

.tes-card h2 {
  font-size: 22px;
  color: #143341;
  line-height: 1.2;
}

.tes-card p {
  font-size: 13px;
  line-height: 1.55;
  color: #58717d;
  margin: 0;
}

.tes-card-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.tes-card-meta div {
  padding: 10px 12px;
  border-radius: 14px;
  background: #f6fafb;
  border: 1px solid #e3edf1;
}

@media only screen and (max-width: 1100px) {
  .tes-hub-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media only screen and (max-width: 900px) {
  .tes-hub-hero,
  .tes-guide-headline,
  .tes-guide-layout {
    grid-template-columns: 1fr;
    display: grid;
  }

  .tes-hub-identity,
  .tes-guide-summary {
    min-width: 0;
  }
}

@media only screen and (max-width: 700px) {
  .tes-hub-shell,
  .tes-guide-shell {
    padding: 16px 12px 28px;
  }

  .tes-hub-grid {
    grid-template-columns: 1fr;
  }

  .tes-hub-hero,
  .tes-guide-header-card,
  .tes-guide-content-card,
  .tes-guide-camera-card,
  .tes-card {
    padding: 16px;
    border-radius: 16px;
  }

  .tes-hub-hero h1,
  .tes-guide-headline h1 {
    font-size: 24px;
  }

  .tes-card h2 {
    font-size: 20px;
  }

  .tes-card-meta {
    grid-template-columns: 1fr;
  }

  .tes-hub-identity {
    flex-direction: column;
    align-items: flex-start;
  }

  .tes-hub-logo {
    width: 72px;
  }
}.kraepelin-progress-value {
  display: block;
  color: #13303d;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.kraepelin-progress-mobile {
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 767.98px) {
  .kraepelin-progress-value {
    font-size: 18px;
  }
}
.tes-hub-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.tes-hub-hero-copy {
  min-width: 0;
}

.tes-hub-logo--hero {
  width: clamp(92px, 11vw, 132px);
  background: transparent;
  border-radius: 0;
  padding: 0;
  flex: 0 0 auto;
}

.tes-token-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #edf4f7 0%, #f8fbfc 100%);
  padding: 28px 16px;
}

.tes-token-shell {
  width: min(100%, 980px);
  margin: 0 auto;
}

.tes-token-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid #d9e5ea;
  box-shadow: 0 22px 60px rgba(26, 54, 73, 0.10);
}

.tes-token-brand {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.tes-token-logo {
  width: clamp(120px, 16vw, 188px);
  height: auto;
  object-fit: contain;
  flex: 0 0 auto;
}

.tes-token-copy {
  min-width: 0;
}

.tes-token-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dff5fb;
  color: #11708d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tes-token-copy h1 {
  margin: 0 0 10px;
  font-size: 34px;
  line-height: 1.1;
  color: #13303d;
}

.tes-token-copy p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #56717f;
  max-width: 560px;
}

.tes-token-panel {
  background: linear-gradient(180deg, #163949 0%, #1f5368 100%);
  border-radius: 24px;
  padding: 22px;
  color: #ffffff;
}

.tes-token-panel-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.tes-token-panel-head span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.78;
}

.tes-token-panel-head strong {
  font-size: 21px;
  line-height: 1.3;
  color: #ffffff;
}

.tes-token-alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.tes-token-alert.is-error {
  background: rgba(255, 233, 233, 0.14);
  border: 1px solid rgba(255, 199, 199, 0.45);
  color: #fff0f0;
}

.tes-token-camera {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  margin-bottom: 16px;
}

.tes-token-camera.is-ready {
  background: rgba(63, 182, 119, 0.18);
  border-color: rgba(155, 236, 190, 0.36);
}

.tes-token-camera.is-blocked {
  background: rgba(255, 196, 0, 0.18);
  border-color: rgba(255, 218, 118, 0.38);
}

.tes-token-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tes-token-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.tes-token-input {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.96);
  padding: 0 18px;
  color: #13303d;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  outline: none;
}

.tes-token-input:focus {
  border-color: #61d3f3;
  box-shadow: 0 0 0 4px rgba(97, 211, 243, 0.18);
}

.tes-token-field small {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.74);
}

.tes-token-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #3fd7ef 0%, #12b5d0 100%);
  color: #073846;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.tes-token-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(14, 197, 224, 0.28);
}

.tes-token-button:disabled {
  opacity: 0.62;
  cursor: not-allowed;
  box-shadow: none;
}

.tes-token-footer {
  padding: 18px 4px 4px;
  text-align: center;
  color: #55717f;
  font-size: 13px;
}

@media only screen and (max-width: 900px) {
  .tes-hub-brand,
  .tes-token-brand,
  .tes-token-card {
    grid-template-columns: 1fr;
  }

  .tes-token-card {
    display: grid;
    padding: 20px;
  }

  .tes-token-brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

@media only screen and (max-width: 700px) {
  .tes-hub-brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .tes-token-page {
    padding: 18px 12px;
  }

  .tes-token-card {
    gap: 18px;
    padding: 18px;
    border-radius: 20px;
  }

  .tes-token-copy h1 {
    font-size: 28px;
  }

  .tes-token-panel {
    padding: 18px;
    border-radius: 18px;
  }

  .tes-token-input {
    font-size: 20px;
    letter-spacing: 0.12em;
  }
}
.tes-token-brand {
  flex-direction: column;
  align-items: flex-start;
}

.tes-token-logo {
  width: clamp(180px, 22vw, 260px);
}
.tes-token-brand {
  align-items: center;
  text-align: center;
}

.tes-token-copy {
  text-align: center;
}

.tes-token-eyebrow {
  margin: 0 auto 10px;
  font-size: 12px;
  padding: 5px 11px;
}

.tes-token-copy h1 {
  font-size: 28px;
  margin-bottom: 8px;
}

.tes-token-copy p {
  font-size: 14px;
  line-height: 1.65;
  max-width: 430px;
}

@media only screen and (max-width: 700px) {
  .tes-token-copy h1 {
    font-size: 24px;
  }

  .tes-token-copy p {
    font-size: 13px;
  }
}
.tes-token-page {
  display: flex;
  align-items: center;
}

.tes-token-shell {
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tes-token-footer {
  margin-top: 18px;
}

@media only screen and (max-width: 700px) {
  .tes-token-page {
    display: block;
  }

  .tes-token-shell {
    min-height: auto;
  }
}
.tes-token-card {
  align-items: center;
}

.tes-token-brand {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  justify-self: center;
  align-self: center;
  justify-content: center;
}

.tes-token-copy {
  width: 100%;
}
