* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-drag: none;
}

a {
    text-decoration: none;
}

img {
    pointer-events: none;
}

p {
    overflow: hidden;
}

li {
    list-style: none;
}

.logoBig {
    height: 32px;
}

body {
    background: var(--Background);
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    font-family: "SF Pro", sans-serif;
}

.notify {
    position: absolute;
    top: 0;
    right: 0;
    padding: 2em;
    animation: slideDown 0.4s var(--ease-standard) forwards,
    slideUp 0.4s var(--ease-standard) 5s forwards;
}

@keyframes slideDown {
    from {
        transform: translateX(0%) translateY(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0%) translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateX(0%) translateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(0%) translateY(-120%);
        opacity: 0;
    }
}

.notify-text {
    gap: 10px;
}

.notify-content {
    background: var(--Background1);
    padding: 8px 32px;
    border-radius: 10px;
}

.notify-content span, svg {
    color: var(--Secondary);
    fill: var(--Secondary);
}

header {
    margin-top: 31px;
    padding: 0 0 0 50px;
}

.Navigation_logo {
    display: flex !important;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.Navigation_logo div {
    font-size: 40px;
    font-family: "Merge Pro Bold";
    color: var(--White);
}

.logo {
    width: 62px;
    height: 62px;
    object-fit: cover;
}

.step-tracker {
    margin: 35px auto;
    display: flex;
    align-items: center;
    max-width: 600px;
    position: relative;
}

.line {
    height: 1px;
    background-color: var(--labelDivider);
    position: absolute;
    top: 2.5px;
    width: 100%;
    left: 0;
    z-index: 0;
}

.step {
    text-align: center;
    flex: 1;
    position: relative;
}

.step-circle {
    width: 20px;
    height: 20px;
    background-color: #ccc;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 12px;
    font-weight: bold;
    z-index: 1;
    position: relative;
    outline: 20px solid var(--Background);
}

.step.active .step-circle {
    background-color: var(--Blue);
}

.step-text {
    margin-top: 8px;
    font-size: 14px;
    color: var(--Gray);
    z-index: 1000 !important;
    position: relative;
}

.step.active .step-text {
    color: var(--Blue);
}

.step:first-child .line {
    left: 50%;
    width: calc(100% - 50%);
    background-color: var(--labelDivider);
}

.step:last-child .line {
    left: 0;
    width: calc(100% - 50%);
    background-color: var(--labelDivider);

}

main {
    width: 100%;
}

.container {
    width: 600px;
    margin: 0 auto;
}

.auth-text {
    text-align: center;
}

.auth-text h1 {
    margin-top: 25px;
    color: var(--Primary);
}

.auth-text div {
    color: var(--Secondary);
    margin-top: 5px;
    font-size: 18px;
}

a {
    color: var(--Blue);
    text-decoration: underline 1px var(--Blue);
}

input {
    width: 100%;
    height: 48px;
    background: var(--Background1);
    border: none;
    border-radius: 8px;
    padding-left: 20px;
    font-size: 15px;
    color: var(--Secondary);
    outline: none;
}

input::placeholder {
    color: var(--Gray);
}

.header-text {
    margin-top: 10px;
    color: var(--Gray);
    padding-bottom: 10px;
}

.nextstep {
    margin-top: 35px;
    padding: 15px;
    width: 100%;
    border-radius: 25px;
    font-size: 16px;
    color: var(--Secondary);
    background: var(--Background1);
    outline: none;
    border: none;
}

.end-auth {
    margin-top: 35px;
}

.end-auth div {
    color: var(--Gray);
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

button:disabled,
button[disabled]{
    opacity: 0.6;
    cursor: not-allowed;
    color: var(--labelDivider);
}

.language-select {
    position: relative;
    width: 100%;
    background: var(--Background1);
    border-radius: 8px;
}

.language-select select {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 8px;
    padding-left: 20px;
    font-size: 15px;
    color: var(--Secondary);
    outline: none;
    appearance: none;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="gray" stroke="gray" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat right 10px center;
    background-size: 16px;
}

.language-option {
    display: flex;
    align-items: center;
    color: var(--Secondary);
    background: var(--Background1);
}

.language-option img {
    width: 20px;
    height: 14px;
    margin-right: 8px;
}

.selected-language {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}


*::-webkit-scrollbar {
    width: 1px;
    background: transparent;
    color: transparent;
}

.code-container {
    background: #1c1c1c;
    color: #fff;
    border-radius: 10px;
    padding: 20px 50px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 500px;
    margin: 0 auto;
}

.code-container h2 {
    margin-bottom: 10px;
    font-size: 25px;
}

.input-group {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 10px 50px;
}

.input-group input {
    padding: 0;
    width: 40px;
    height: 40px;
    text-align: center;
    font-size: 18px;
    border: 1px solid var(--labelDivider);
    border-radius: 5px;
    outline: none;
    background-color: transparent;
    color: var(--Secondary);
}

.input-group input:focus {
    border-color: var(--Blue);
    box-shadow: 0 0 5px var(--Blue);
}

.timer {
    margin-top: 10px;
    font-size: 14px;
    color: #aaa;
}

.resend-button {
    display: none;
    padding: 5px 25px;
    background-color: var(--White);
    color: black;
    border: none;
    margin: 10px auto 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.resend-button:hover {
    opacity: 0.85;
    transition: opacity 0.15s ease-in-out;
}

.code-container p {
    color: var(--Secondary);
}

.w-66 {
    width: 63%;
}

.w-33 {
    width: 36%;
}

.h1error {
    font-family: "Merge Pro Bold";
    margin-bottom: 10px;
}

.error {
    color: var(--Red) !important;
}

.error input {
    background-color: #fce4e4;
    border: 1px solid var(--Red);
    color: black;
    outline: none;
}

.error .error-message {
    display: flex;
    gap: 5px;
}

.error-message {
    color: var(--Red);
    display: inline-block;
    font-size: 13px;
    line-height: 15px;
    margin: 8px 0 0;
}

.error-message {
    display: none;
}