﻿html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    font-size: 100%;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
a {
    text-decoration: none;
}
a:active,
a:hover {
    outline: 0;
}
ul,
li {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}
html {
    box-sizing: border-box;
}
*,
*:before,
*:after {
    box-sizing: border-box;
}
:focus {
    outline: 0;
}
img,
audio,
video {
    max-width: 100%;
    height: auto;
}
audio,
canvas,
iframe,
video,
img,
svg {
    vertical-align: middle;
}
iframe {
    border: 0;
}
textarea {
    overflow: auto;
    resize: none;
    vertical-align: top;
    box-shadow: none;
}
input,
textarea,
select,
button {
    font-size: 100%;
    margin: 0;
    border: none;
    outline: none;
}
button,
input {
    line-height: normal;
}
table {
    border-spacing: 0;
    border-collapse: collapse;
}
td,
th {
    padding: 0;
    text-align: left;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}
input[type="number"] {
    -moz-appearance: textfield;
}
body {
    position: relative;
    min-width: 320px;
    max-width: 100dvw;
    font-family: "Muller", sans-serif;
    color: #111412;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

    min-height: calc(100% + env(safe-area-inset-top));
}
@font-face {
    font-family: "Muller";
    font-weight: normal;
    font-style: normal;
    src: url("../fonts/Muller/MullerRegular.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Muller";
    font-weight: 300;
    font-style: normal;
    src: url("../fonts/Muller/MullerLight.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Muller";
    font-weight: 500;
    font-style: normal;
    src: url("../fonts/Muller/MullerMedium.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Muller";
    font-weight: bold;
    font-style: normal;
    src: url("../fonts/Muller/MullerBold.woff") format("woff");
    font-display: swap;
}
@font-face {
    font-family: "Muller";
    font-weight: 900;
    font-style: normal;
    src: url("../fonts/Muller/MullerExtraBold.woff") format("woff");
    font-display: swap;
}
.auth-layout {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background: #fff;
    background-image: url("../images/bg.jpg");
    background-position: center right;
    background-size: cover;
    overflow: hidden;
    position: relative;
}
@media screen and (max-width: 767px) {
    .auth-layout {
        background: #fff;
    }
}
.auth-layout::before {
    content: "";
    background: #ffffffbf;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.auth-layout__content {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 0;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 767px) {
    .auth-layout__content {
        align-items: flex-start;
        padding: 0;
    }
}
.btn {
    padding: 0 1.25rem;
    color: #fff;
    background-color: #41c07d;
    font-size: 0.875rem;
    font-family: "Muller", sans-serif;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    vertical-align: top;
    text-decoration: none;
    position: relative;
    border-radius: 0.1875rem;
    line-height: 1.2;
    height: 2.8125rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background 0.2s cubic-bezier(0.58, 0.3, 0.005, 1);
}
.btn:hover {
    background: #3aae71;
}
.btn svg,
.btn img {
    width: 1.125rem;
    height: 1.125rem;
    display: block;
    flex-shrink: 0;
    position: relative;
    fill: #fff;
}
.btn svg:first-child,
.btn img:first-child {
    margin-right: 0.5rem;
}
.btn svg:last-child,
.btn img:last-child {
    margin-left: 0.5rem;
}
.btn:active {
    transform: scale(0.98);
}
.btn[disabled] {
    background: #d9d9d9;
    cursor: not-allowed;
    box-shadow: none;
}
.wallet-verification {
    width: 100%;
    max-width: 75rem;
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}
@media screen and (max-width: 1100px) {
    .wallet-verification {
        padding-top: 15px;
    }
}
.wallet-verification__intro {
    margin-bottom: 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0px 20px 150px 0px rgba(38, 48, 80, 0.2);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 1.25rem 1.5625rem;
}
.wallet-verification__logo {
    margin: 0 0 6.25rem 0;
    width: 11.25rem;
}
.wallet-verification__logo img {
    display: block;
    width: 100%;
    height: auto;
}
.wallet-verification__title {
    margin-bottom: 0.5rem;
    font-size: 1.625rem;
    font-weight: 700;
}
.wallet-verification__description {
    color: #6b736c;
    font-size: 1rem;
}
.wallet-verification__list {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    width: 100%;
}
.wallet-verification__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1.25rem 1.5625rem;
    background: #fff;
    border-radius: 0.75rem;
    box-shadow: 0px 20px 150px 0px rgba(38, 48, 80, 0.2);
}
.wallet-verification__item-content {
    min-width: 0;
    flex-grow: 1;
    width: 100%;
}
.wallet-verification__label {
    display: block;
    margin-bottom: 0.4375rem;
    color: #6b736c;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
}
.wallet-verification__address {
    overflow: hidden;
    color: #111412;
    font-size: 1.125rem;
    font-weight: 700;
    font-family: "Muller", sans-serif;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}
.wallet-verification__address::placeholder {
    font-weight: 300;
}
.wallet-verification__verify {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    gap: 0.9375rem;
}
.wallet-verification__button {
    min-width: 7.8125rem;
    height: 2.8125rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.375rem;
    padding: 0 1.25rem;
}
.wallet-verification__success {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border: 0;
    border-radius: 50%;
    background: #1fc07d;
    box-shadow: 0 4px 10px rgba(31, 192, 125, 0.3);
}
.wallet-verification__success .svg-icon,
.wallet-verification__success svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: #fff;
}
@media screen and (max-width: 991px) {
    .wallet-verification__intro,
    .wallet-verification__list {
        max-width: none;
    }
    .wallet-verification__item {
        padding: 1.125rem 1.25rem;
    }
}
@media screen and (max-width: 767px) {
    .wallet-verification__logo {
        margin: 0 auto 1.25rem 0;
    }
    .wallet-verification__title {
        font-size: 1.3125rem;
    }
    .wallet-verification__item {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.875rem;
        padding: 0.9375rem;
    }
    .wallet-verification__verify {
        width: 100%;
        justify-content: flex-start;
        gap: 0.625rem;
    }
    .wallet-verification__button {
        flex: 1;
    }
}
.svg-icon {
    display: inline-block;
}

.wallet-verification__success[hidden]{display:none!important}
.wallet-verification__hint{margin:1rem 0 0;font-size:.875rem;text-align:center;opacity:.9}
.wallet-verification__address.is-verified{color:#1fc07d}
