@font-face {
    font-family: "Golos Text";
    font-weight: 400;
    font-style: normal;
    src: url("./fonts/GolosText-Regular.eot"); /* IE 9 Compatibility Mode */
    src: url("./fonts/GolosText-Regular.eot?#iefix") format("embedded-opentype"), /* IE < 9 */
    url("./fonts/GolosText-Regular.woff2") format("woff2"), /* Super Modern Browsers */
    url("./fonts/GolosText-Regular.woff") format("woff"), /* Firefox >= 3.6, any other modern browser */
    url("./fonts/GolosText-Regular.ttf") format("truetype"); /* Safari, Android, iOS */
}

@font-face {
    font-family: "Golos Text";
    font-weight: 500;
    font-style: normal;
    font-display: swap;
    src: url("./fonts/GolosText-Medium.eot");
    src: url("./fonts/GolosText-Medium.eot?#iefix") format("embedded-opentype"),
    url("./fonts/GolosText-Medium.woff2") format("woff2"),
    url("./fonts/GolosText-Medium.woff") format("woff"),
    url("./fonts/GolosText-Medium.ttf") format("truetype");
}

@font-face {
    font-family: "Golos Text";
    font-weight: 600;
    font-style: normal;
    font-display: swap;
    src: url("./fonts/GolosText-DemiBold.eot");
    src: url("./fonts/GolosText-DemiBold.eot?#iefix") format("embedded-opentype"),
    url("./fonts/GolosText-DemiBold.woff2") format("woff2"),
    url("./fonts/GolosText-DemiBold.woff") format("woff"),
    url("./fonts/GolosText-DemiBold.ttf") format("truetype");
}

@font-face {
    font-family: "Golos Text";
    font-weight: 700;
    font-style: normal;
    src: url("./fonts/GolosText-Bold.eot");
    src: url("./fonts/GolosText-Bold.eot?#iefix") format("embedded-opentype"),
    url("./fonts/GolosText-Bold.woff2") format("woff2"),
    url("./fonts/GolosText-Bold.woff") format("woff"),
    url("./fonts/GolosText-Bold.ttf") format("truetype");
}

@font-face {
    font-family: "Golos Text";
    font-weight: 900;
    font-style: normal;
    font-display: swap;
    src: url("./fonts/GolosText-Black.eot");
    src: url("./fonts/GolosText-Black.eot?#iefix") format("embedded-opentype"),
    url("./fonts/GolosText-Black.woff2") format("woff2"),
    url("./fonts/GolosText-Black.woff") format("woff"),
    url("./fonts/GolosText-Black.ttf") format("truetype");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Golos Text", "Roboto Flex", "Open Sans", Arial, sans-serif;
}

body {
    background-color: #081219;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    max-width: 600px;
    width: 100%;
}

.title {
    font-size: 3.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
}

.decoration {
    width: inherit;
}

.logo {
    margin-bottom: 20px;
}
.b24-form-click-btn-wrapper{
    margin-top: 20px;
}
@keyframes pulse {
    0% {
        transform: translateX(-10%);
    }
    100% {
        transform: translateX(0%);
    }
}

@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .container {
        padding: 40px 20px;
    }
}