/* ── Balsavimo forma CSS ── */
#balsavimas-wrap {
    max-width: 680px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a1a;
}

.balz-zingsnis {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 28px 32px;
}

.balz-header h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0 0 4px;
    text-align: center;
}

.balz-note {
    font-size: 13px;
    color: #c0392b;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.balz-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 22px 0;
}

.balz-section-title {
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    letter-spacing: .3px;
    margin: 6px 0;
    padding: 6px 0;
    background: #f9f9f9;
    border-radius: 4px;
}

.balz-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

@media (max-width: 560px) {
    .balz-row-2 { grid-template-columns: 1fr; }
    .balz-zingsnis { padding: 20px 16px; }
}

.balz-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.balz-field label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    color: #222;
}

.req { color: #c0392b; }

.balz-field input[type=text],
.balz-field input[type=tel],
.balz-field select,
#bal-tel {
    border: 1.5px solid #ccc;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    outline: none;
    transition: border-color .15s;
    width: 100%;
    box-sizing: border-box;
    background: #fff;
}

.balz-field input:focus,
.balz-field select:focus,
#bal-tel:focus {
    border-color: #1d6f42;
    box-shadow: 0 0 0 3px rgba(29,111,66,.12);
}

.balz-radio-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.balz-radio {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.4;
}

.balz-radio input[type=radio] {
    accent-color: #1d6f42;
    margin-top: 2px;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.balz-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 20px;
}

.balz-checkbox input[type=checkbox] {
    accent-color: #1d6f42;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Telefono laukas */
.balz-phone-row {
    display: flex;
    gap: 8px;
}

.balz-prefix {
    background: #f5f5f5;
    border: 1.5px solid #ccc;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    color: #555;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

/* OTP kodas */
.balz-otp-row {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
}

.balz-otp-d {
    width: 50px;
    height: 56px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color .15s;
    background: #fff;
    color: #1a1a1a;
}

.balz-otp-d:focus {
    border-color: #1d6f42;
    box-shadow: 0 0 0 3px rgba(29,111,66,.15);
}

.balz-otp-d.klaida {
    border-color: #c0392b;
}

/* Mygtukai */
.balz-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: #1d6f42;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s, opacity .15s;
    margin-bottom: 10px;
    letter-spacing: .2px;
}

.balz-btn:hover { background: #155c35; }
.balz-btn:disabled { background: #aaa; cursor: default; }

.balz-btn-back {
    background: transparent;
    color: #555;
    border: 1.5px solid #ccc;
}

.balz-btn-back:hover { background: #f5f5f5; }

/* Info dėžutė */
.balz-info-box {
    background: #eaf4ee;
    border: 1px solid #b7dfc5;
    border-radius: 6px;
    padding: 12px 16px;
    font-size: 14px;
    color: #155c35;
    margin-bottom: 20px;
}

/* Klaidos */
.balz-err {
    background: #fdf0f0;
    border: 1px solid #f5c6c6;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    color: #c0392b;
    margin-bottom: 14px;
}

/* Laikmatis */
.balz-timer {
    text-align: center;
    font-size: 13px;
    color: #666;
    margin-bottom: 6px;
}

.balz-resend {
    text-align: center;
    font-size: 13px;
    color: #1d6f42;
    cursor: pointer;
    text-decoration: underline;
    margin-bottom: 14px;
}

/* Sėkmė */
.balz-success {
    text-align: center;
    padding: 20px 0;
}

.balz-success-icon {
    width: 70px;
    height: 70px;
    background: #eaf4ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #1d6f42;
    margin: 0 auto 20px;
    font-weight: 700;
}

.balz-success h2 {
    font-size: 22px;
    color: #1d6f42;
    margin: 0 0 10px;
}

.balz-success p {
    font-size: 15px;
    color: #444;
    margin: 0 0 16px;
}

.balz-success-detail {
    background: #f5f5f5;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    color: #555;
    display: inline-block;
    margin-top: 8px;
}

.balz-field-note {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}
