/* =========================
   FORM CARD
========================= */
.telegram-form {
    max-width: 420px;
    margin: 30px auto;
    padding: 16px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   FIELD WRAPPER
========================= */
.telegram-form p {
    margin-bottom: 14px;
}

/* =========================
   INPUT STYLE (MODERN)
========================= */
.telegram-form input,
.telegram-form textarea,
.telegram-form select {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #f9fafb;
    font: inherit;
}

/* =========================
   CHOICE GRID (2 KOLOM)
========================= */
.choice-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* =========================
   CHOICE BUTTON (CARD STYLE)
========================= */
.choice-btn {
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #fff !important;
    cursor: pointer;
    text-align: center;
    font: inherit;
    transition: all 0.2s ease;
}

/* =========================
   ACTIVE STATE
========================= */
.choice-btn.active {
    border-color: #4f7cff;
    background: rgba(79,124,255,0.1) !important;
    color: #4f7cff;
    font-weight: 500;
}

/* =========================
   BUTTON SUBMIT
========================= */
.telegram-form button[type="submit"] {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: none;
    font-weight: 600;
    color: #fff;
    cursor: pointer;

    background: linear-gradient(135deg, #4f7cff, #6ea8ff);
}

/* =========================
   STATUS
========================= */
#status {
    margin-top: 10px;
    font-size: 0.9em;
}