* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, rgba(244, 76, 127, 0.1), rgba(238, 238, 238, 0.1));
    color: #323232;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.container {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(238, 238, 238, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(50, 50, 50, 0.1);
}

.logo {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 18px;
    color: #797A7C;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-text {
    font-size: 28px;
    color: #323232;
    margin-bottom: 40px;
    font-weight: 600;
    line-height: 1.3;
}

.form-container {
    padding: 30px;
    background: rgba(244, 76, 127, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(244, 76, 127, 0.1);
}

.form-title {
    font-size: 20px;
    font-weight: 600;
    color: #323232;
    margin-bottom: 20px;
}

/* Стили для формы Битрикс24 */
[data-b24-form],
.b24-form,
.b24-form-wrapper {
    text-align: left !important;
}

[data-b24-form] .b24-form-field,
[data-b24-form] .b24-form-group,
.b24-form .b24-form-field,
.b24-form .b24-form-group {
    text-align: left !important;
}

[data-b24-form] .b24-form-label,
[data-b24-form] label,
[data-b24-form] .b24-form-control-label,
.b24-form .b24-form-label,
.b24-form label,
.b24-form .b24-form-control-label {
    text-align: left !important;
    display: block !important;
    margin-bottom: 5px !important;
    float: none !important;
    clear: both !important;
}

[data-b24-form] .b24-form-btn-container,
[data-b24-form] .b24-form-button-container,
[data-b24-form] .b24-form-submit,
.b24-form .b24-form-btn-container,
.b24-form .b24-form-button-container,
.b24-form .b24-form-submit {
    text-align: center !important;
    margin-top: 15px !important;
}

[data-b24-form] .b24-form-checkbox,
[data-b24-form] .b24-form-agreement,
.b24-form .b24-form-checkbox,
.b24-form .b24-form-agreement {
    text-align: left !important;
}

.success-message {
    display: none;
    margin-top: 20px;
}

.success-text {
    color: #323232;
    margin-bottom: 20px;
    font-size: 16px;
}

.main-site-btn {
    display: inline-block;
    background: linear-gradient(135deg, #F44C7F, #F44C7F);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(244, 76, 127, 0.3);
    margin-top: 10px;
}

.main-site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 76, 127, 0.4);
}

.vpn-note {
    font-size: 12px;
    color: #797A7C;
    margin-top: 8px;
    font-style: italic;
}

@media (max-width: 768px) {
    .container {
        padding: 40px 20px;
    }

    .logo {
        font-size: 36px;
    }

    .hero-text {
        font-size: 22px;
    }
}
