/* ============================================================
   Mind Debugger — chat-specific controls layered on user.css.
   The design scheme (navy/teal card, gold accents, HUD corners,
   Inter) comes from user.css; this file only adds what the member
   pages never needed: form inputs and a non-Discord submit button
   that keeps the .discord-btn geometry in the gold treatment.
   ============================================================ */

.chat-login-form {
    text-align: left;
}

.chat-field {
    margin-bottom: 20px;
}

.chat-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(168, 192, 192, 0.8);
    margin-bottom: 8px;
}

.chat-input {
    width: 100%;
    box-sizing: border-box;
    background: rgba(20, 40, 40, 0.6);
    border: 1px solid rgba(78, 204, 163, 0.25);
    border-radius: 6px;
    padding: 14px 16px;
    font-family: inherit;
    font-size: 15px;
    color: #f0f4f4;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.chat-input::placeholder {
    color: rgba(136, 146, 176, 0.5);
}

.chat-input:focus {
    outline: none;
    border-color: #d4a855;
    box-shadow: 0 0 0 3px rgba(212, 168, 85, 0.15);
}

.chat-field-error {
    font-size: 12px;
    color: #e8846b;
    margin: 6px 0 0;
}

/* Same geometry and weight as .discord-btn, gold treatment. */
.chat-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #d4a855 0%, #c9985a 100%);
    color: #1a1a2e;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(212, 168, 85, 0.25);
}

.chat-submit-btn:hover {
    background: linear-gradient(135deg, #ddb463 0%, #d4a855 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 168, 85, 0.35);
}

/* Quiet variant (e.g. Sign Out on the placeholder page). */
.chat-submit-btn--secondary {
    background: transparent;
    color: rgba(168, 192, 192, 0.9);
    border: 1px solid rgba(78, 204, 163, 0.35);
    box-shadow: none;
}

.chat-submit-btn--secondary:hover {
    background: rgba(78, 204, 163, 0.08);
    color: #f0f4f4;
    box-shadow: none;
}
