:root {
    --primary-color-bg: #d6d6d6;
    --title-color: #a3a5ad;
    --font-color-text: #a3a5ad;
    --font-size-base: 16px;
  }
body{
}
h1,h2{
  color: var(--title-color) !important;
  font-weight: 700 !important;
  line-height: 38px;
}
div{
  color: var(--font-color-text);
}
p{
  color: var(--font-color-text);
}
input{
    border-radius: 4%;
    height: 40px;
    border: none;
    background-color:var(--primary-color-bg);
}
input:focus {
    outline: none;
    border: none; 
    box-shadow: none;
  }
label{
    font-weight: bold;
}
a{
  text-decoration: none;
}