/* css/global.css */
body { background-color: #f1f5f9; font-family: sans-serif; margin: 0; }

.field-input { 
    width: 100%; padding: 0.75rem; border: 1px solid #cbd5e1; 
    border-radius: 0.5rem; font-size: 0.875rem; background-color: #f8fafc;
    margin-bottom: 1rem; transition: border 0.2s;
}

.field-input:focus { outline: none; border-color: #d97706; box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.2); }

.btn-primary { 
    width: 100%; background-color: #020617; color: white; font-weight: bold; 
    padding: 0.75rem; border-radius: 0.5rem; cursor: pointer; transition: background 0.2s; 
}

.btn-primary:hover { background-color: #1e293b; }
body {
    font-family: 'Inter', system-ui, sans-serif; /* Fonte moderna */
    background-color: #f8fafc; /* Um fundo bem suave */
}

.card-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* Campos de entrada mais elegantes */
.field-input {
    border: 1px solid #cbd5e1;
    transition: all 0.2s ease;
}

.field-input:focus {
    border-color: #3b82f6; /* Azul corporativo */
    ring: 3px solid rgba(59, 130, 246, 0.2);
}
.textarea-quebra {
    white-space: pre-wrap;     /* Garante que o texto respeite espaços e quebre linhas */
    word-wrap: break-word;     /* Força a quebra de palavras longas se necessário */
    overflow-wrap: break-word; /* Suporte moderno para quebra de palavras */
    line-height: 1.5;          /* Melhora a legibilidade com múltiplas linhas */
}