:root {
  --font-family-body:'Ubuntu Condensed', sans-serif;
  --font-family-logo:'Ubuntu Mono', monospace;

  --font-bold: bold;
  --font-size-logo: 50px;
  --font-size-card-title: 28px;
  --font-size-input-label: 20px;
  --font-size-button: 22px;
  --font-size-form-fieldset: 22px;
  --font-size-table-header: 22px;
  --font-size-modal-title: 28px;
  --font-size-modal-button: 28px;

  --primary-color: #6C4AB6;
  --secondary-color: #8D72E1;
  --contrast-dark-color: #4d4d4d;
  --contrast-light-color: #fff;
  --warning-color: #df2525;
  --success-color: #047900;
  --transparency-color: #2e2e2e33;
  --shadow: 0 5px 10px #30303038;
  
}

.cadastro-cabecalho {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
}

.registry-header__logo {
  width: 2.625rem;
  margin-bottom: 0.5rem;
}

.registry-header__title {
  font-family: var(--font-family-logo);
  font-size: var(--font-size-logo);
  color: var(--contrast-light-color);
  font-weight: var(--font-bold);
  margin-bottom: 1rem;
}

@media (min-width: 800px) {
  .registry-header__logo {
    width: 5.75rem;
    margin-bottom: 1rem;
  }

  .registry-header__title {
    margin-bottom: 2rem;
  }
}
