/* CSS Document */
/* ==========================================================================
   NEON FORMS — Estilos avançados para formulários e botões
   ========================================================================== */

/* ==========================================================================
   CAMPOS PADRÃO
   ========================================================================== */

.neon-input,
.neon-textarea,
.neon-select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #333;
    border-radius: 4px;
    background-color: #0f1316;
    color: #fff;
    font-family: Raleway, sans-serif;
    font-size: 15px;
    transition: border-color .2s ease, background .2s ease;
}

.neon-input:focus,
.neon-textarea:focus,
.neon-select:focus {
    border-color: #00e0e0;
    background-color: #141a1f;
    outline: none;
}

/* Placeholder */
.neon-input::placeholder,
.neon-textarea::placeholder {
    color: #888;
}

/* ==========================================================================
   BOTÕES
   ========================================================================== */

.neon-button {
    display: inline-block;
    padding: 14px 26px;
    background-color: #008285;
    color: #fff;
    border: 0;
    border-radius: 4px;
    font-family: Raleway, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
}

.neon-button:hover {
    background-color: #00a0a0;
}

.neon-button:active {
    transform: scale(0.96);
}

/* Botão escuro */
.neon-button-dark {
    background-color: #14181b;
    color: #00e0e0;
}

.neon-button-dark:hover {
    background-color: #1d2328;
}

/* Botão de alerta */
.neon-button-alert {
    background-color: #d9534f;
}

.neon-button-alert:hover {
    background-color: #c9302c;
}

/* ==========================================================================
   FORMULÁRIOS EM LINHA
   ========================================================================== */

.neon-form-inline {
    display: flex;
    gap: 12px;
    align-items: center;
}

.neon-form-inline .neon-input {
    flex: 1;
}

/* ==========================================================================
   FORMULÁRIO DE BUSCA (NEON)
   ========================================================================== */

.neon-search {
    position: relative;
}

.neon-search input[type="search"] {
    width: 100%;
    padding: 14px 16px;
    border-radius: 4px;
    border: 1px solid #333;
    background-color: #0f1316;
    color: #fff;
}

.neon-search button {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    color: #00e0e0;
    font-size: 20px;
    cursor: pointer;
    transition: color .2s ease;
}

.neon-search button:hover {
    color: #00ffff;
}

/* ==========================================================================
   CHECKBOXES E RADIO (NEON)
   ========================================================================== */

.neon-check,
.neon-radio {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.neon-check input,
.neon-radio input {
    accent-color: #00e0e0;
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   FORMULÁRIOS EM CARTÃO
   ========================================================================== */

.neon-form-card {
    background-color: #14181b;
    padding: 24px;
    border-radius: 6px;
    border-left: 4px solid #008285;
    color: #e0e0e0;
}

.neon-form-card h3 {
    margin-bottom: 16px;
    color: #fff;
}

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */

@media (max-width: 900px) {
    .neon-form-inline {
        flex-direction: column;
        align-items: stretch;
    }

    .neon-button {
        width: 100%;
        text-align: center;
    }
}


