html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
    scrollbar-gutter: stable;
}

/* Стилизуем сам скролл для Webkit-браузеров */
html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

html::-webkit-scrollbar-track {
    background: transparent;
}

body {
    background: #000;
}

body.no-scroll {
    overflow: hidden;
    height: 100vh;
    position: fixed;
    width: 100vw;
}

.bg-main {
    position: fixed;
    pointer-events: none;
    z-index: -1;
    width: 100%;
    height: 100%;
		
    background-image: url('/client/image/icons/bg-log-reg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}



.header {
    z-index: 1000;
    background: rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
}

.title-container {
    width: 150px !important;
    cursor: pointer;
    transition: filter 0.3s ease-in-out;
}

.title-container:hover {
    filter: brightness(2);
}

.next-btn {
    cursor: pointer;
    width: 72px !important;
    height: 72px !important;
    object-fit: contain;
    right: 0;
    top: 0;
    transition: filter 0.3s ease-in-out;
}

.next-btn:hover {
    filter: brightness(2);
}

.page-name {
    font-family: Unbounded !important;
    color: #C6C4C4;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.03em;
}

.form-container {
    width: 300px;
    height: 100%;
}

h2 {
    font-family: Unbounded !important;
    color: #C6C4C4;
    font-size: 22px;
    font-weight: 400;
}

input {
    background: rgba(0, 0, 0, 0);
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    height: 40px;
    font-family: Unbounded !important;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 200;
    letter-spacing: -0.03em;
}

input::placeholder {
    font-family: Unbounded !important;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 200;
    letter-spacing: -0.03em;
}

button,
	.button {
    width: 250px;
    height: 40px;
    font-family: Unbounded !important;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    font-weight: 200;
    background: none;
    transition: color 0.3s ease-in-out;
    letter-spacing: -0.03em;
}

button:hover {
    color: #fff;
}