* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif; /* Usando a fonte Poppins para um visual moderno */
    background-color: #f8f8f8; /* Cor de fundo cinza claro */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ocupa toda a altura da tela */
    color: #000;
}

:root {
    --bg-light: #F8F8F8;
    --primary-pink: #ff0055;
    --input-bg: #F2F2F2;
    --text-dark: #000000;
    --text-grey: #888888;
    --btn-disabled: #EEEEEE;
}