.vxr_f1_main_box {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(135deg, #0c1848 0%, #371756 25%, #3b32bf 50%, #1a1460 75%, #281d74 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vxr_f1_background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.vxr_f1_house_bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(8px);
}

.vxr_f1_main_box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(108, 99, 255, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.3) 0%, transparent 50%);
    z-index: 2;
}

.vxr_f1_container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.vxr_f1_form_wrapper {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.vxr_f1_form_wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent);
}

.vxr_f1_form_header {
    text-align: center;
    margin-bottom: 40px;
}

.vxr_f1_title {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.vxr_f1_description {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.vxr_f1_form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.vxr_f1_form_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.vxr_f1_form_group {
    position: relative;
    display: flex;
    flex-direction: column;
}

.vxr_f1_input,
.vxr_f1_textarea {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    padding: 18px 0 12px 0;
    border: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: transparent;
    outline: none;
    transition: all 0.3s ease;
    color: #ffffff !important;
}

.vxr_f1_textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.vxr_f1_input::placeholder,
.vxr_f1_textarea::placeholder {
    color: transparent;
}

.vxr_f1_label {
    position: absolute;
    left: 0;
    top: 18px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    pointer-events: none;
    transition: all 0.3s ease;
    transform-origin: left top;
}

.vxr_f1_input:focus + .vxr_f1_label,
.vxr_f1_input:not(:placeholder-shown) + .vxr_f1_label,
.vxr_f1_textarea:focus + .vxr_f1_label,
.vxr_f1_textarea:not(:placeholder-shown) + .vxr_f1_label {
    transform: translateY(-28px) scale(0.8);
    color: #ffffff;
    font-weight: 500;
}

.vxr_f1_input_line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #6C63FF, #9C88FF);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: center;
}

.vxr_f1_input:focus ~ .vxr_f1_input_line,
.vxr_f1_textarea:focus ~ .vxr_f1_input_line {
    transform: scaleX(1);
}

.vxr_f1_input:focus,
.vxr_f1_textarea:focus {
    border-bottom-color: transparent;
}

.vxr_f1_submit_wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.vxr_f1_submit_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #6C63FF 0%, #5A4FCF 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgb(45 40 129 / 30%);
    position: relative;
    overflow: hidden;
}

.vxr_f1_submit_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.vxr_f1_submit_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4);
    background: linear-gradient(135deg, #7B72FF 0%, #6A5FDF 100%);
}

.vxr_f1_submit_btn:hover::before {
    left: 100%;
}

.vxr_f1_submit_btn:active {
    transform: translateY(0);
}

.vxr_f1_btn_icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.vxr_f1_submit_btn:hover .vxr_f1_btn_icon {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .vxr_f1_main_box {
        padding: 40px 16px;
    }

    .vxr_f1_form_wrapper {
        padding: 32px 24px;
    }

    .vxr_f1_title {
        font-size: 2rem;
    }

    .vxr_f1_description {
        font-size: 1rem;
    }

    .vxr_f1_form_row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .vxr_f1_form {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .vxr_f1_title {
        font-size: 1.75rem;
    }

    .vxr_f1_submit_btn {
        width: 100%;
        justify-content: center;
    }

    .vxr_f1_form_wrapper {
        padding: 28px 20px;
    }
}