/* ===== Telegram Form – Clean Final ===== */
.telegram-form {
    max-width: 420px;
    margin: 20px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

/* Inputs */
.telegram-form .telegram-input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    background: #fafafa;
    color: #333;
    transition: all 0.25s ease;
}

.telegram-form .telegram-input:focus {
    outline: none;
    background: #fff;
    border-color: #c20c32;
    box-shadow: 0 0 0 3px rgba(217, 34, 34, 0.18);
}

/* Button – Force clean style */
.telegram-form .telegram-button {
    width: 100%;
    padding: 12px 16px;

    /* reset overrides */
    color: #ffffff !important;
    background: #c20c32 !important;
    border: 1px solid #c20c32 !important;

    font-size: 15px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;

    transition: background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
}

/* Hover */
.telegram-form .telegram-button:hover {
    background: #c20c32 !important;
    border-color: #c20c32 !important;
    box-shadow: 0 6px 18px rgba(217, 34, 34, 0.3);
}

/* Focus */
.telegram-form .telegram-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(217, 34, 34, 0.35);
}

/* Active */
.telegram-form .telegram-button:active {
    background: #c20c32 !important;
    border-color: #c20c32 !important;
    transform: scale(0.98);
}

/* Disabled */
.telegram-form .telegram-button:disabled {
    background: #eab7b7 !important;
    border-color: #eab7b7 !important;
    color: #ffffff !important;
    cursor: not-allowed;
    box-shadow: none;
}

/* Messages */
.aseman-msg {
    margin-top: 12px;
    font-size: 14px;
}

.aseman-msg--success {
    color: #2e7d32;
}

.aseman-msg--error {
    color: #c62828;
}