
:root {
  --primary-color: #255FE4 !important; 
  --primary-color-title: #0A0061 !important; 
  --accent-color: #9326E7 !important; 
  --accent-color-title: #9326E7 !important; 
  --secondary-color: #0A0061 !important; 
  --background-image: url('');
}

@font-face {
  font-family: Inter-Regular;
  src: url('../fonts/inter/Inter_18pt-Regular.ttf');
}

@font-face {
  font-family: Inter-Bold;
  src: url('../fonts/inter/Inter_18pt-Bold.ttf');
}

@font-face {
  font-family: Creo-Light;
  src: url('../fonts/creo/Creo-ExtraLight.ttf');
}

@font-face {
  font-family: Creo-Bold;
  src: url('../fonts/creo/Creo-ExtraBold.ttf');
}

body,
html, app-root {
    height: 100%;
    font-family: Creo-Light, sans-serif !important;
    font-size: 16px;
    color: #000000;
}

body {
  background-image: var(--background-image);
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

form {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
}

form, div, label, button, a, b {
  font-family: Creo-Light, sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Creo-Bold, sans-serif;
  color: var(--primary-color-title) !important;
  letter-spacing: 1px;
}

button {
  margin-left: .3rem !important;
  border-radius: 50px !important;
}

button:hover {
  transform: scale(1.1);
}

a {
  color: var(--accent-color-title) !important;
  text-decoration: underline !important;
  font-weight: 800 !important;
  cursor: pointer;
}