@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

* {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
}

:root {
    --texto-primario: #dbdbdb;
    --texto-secundario: #202020;
    --texto-status: #ffffff;
    --background-body: #f0f0f0;
    --background-status-invalido: #eb0d0d;
    --background-status-valido: #03880a;
    --background-cep-status-consultando: #084799;
    --background-cep-status-invalido: #eb530d;  
}

p, span, h1, h2, h3, h4, h5, h6, hr, .form-check label {
    color: var(--texto-primario);
}

.form-control {
    border: 1px solid #4b4b4b;
    box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.2);
}

.form-control:focus {
    box-shadow: none;
}
