/* Google Fonts - Poppins (RAM Design System primary font) */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

/* Base font */
* {
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #FCFCFC; /* neutral-10 */
    color: #292733;            /* neutral-90 */
}

/* Chrome autofill fix - keep autofilled inputs visually consistent */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #FFFFFF inset !important;
    -webkit-text-fill-color: #292733 !important; /* neutral-90 */
    font-family: 'Poppins', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.5rem !important;
    padding: 0.75rem 1rem !important;
    transition: background-color 5000s ease-in-out 0s;
}

