.bazit-form {
    background: #fafafa;
    padding: 28px;
    border-radius: 12px;
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 2px 8px #0001;
    box-sizing: border-box;
}

.bazit-form-row {
    display: flex;
    gap: 22px;
    margin-bottom: 22px;
    width: 100%;
    flex-wrap: wrap;
}

.bazit-form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    width: 100%;
}

.bazit-form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.bazit-form input,
.bazit-form select,
.bazit-form textarea {
    border: 1px solid #bbb;
    border-radius: 12px;
    padding: 10px;
    font-size: 1em;
    background: #fff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.bazit-form input:focus,
.bazit-form select:focus,
.bazit-form textarea:focus {
    border: 1px solid;
    border-color: #77d6a5;
    
}

.bazit-form textarea {
    resize: vertical;
    min-height: 68px;
}

.bazit-form-btn {
    padding: 14px 38px;
    background: #77d6a5;
    border: none;
    border-radius: 8px;
    color: #222;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

.bazit-form-btn:hover {
    background: #5fc990;
}

.bazit-form-response {
    margin-top: 18px;
    text-align: center;
    font-weight: 600;
}


.bazit-form-group input,
.bazit-form-group select {
    height: 42px !important;
    line-height: 1.2em;
    padding: 10px 12px;
    font-size: 1em;
    box-sizing: border-box;
    vertical-align: middle;
    display: block;
}
.bazit-form-row {
    align-items: flex-end;
}




/* Responsive */
@media (max-width: 768px) {
    .bazit-form {
        padding: 16px;
        max-width: 99vw;
    }
    .bazit-form-row {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 14px;
    }
    .bazit-form-group {
        width: 100%;
    }
}