body {
  height: 100dvh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --bgColor: #e2c8e5;
  --titleText: #fad58f;
  background-color: var(--bgColor);
  scrollbar-gutter: stable;
  scrollbar-track-color: transparent;
}

body::-webkit-scrollbar {
  display: none;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}

.full-size {
  width: 100%;
  height: 100%;  
}

.centered-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

form.login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 300px;
  
  label {
    display: flex;
    flex-direction: column;
    font-weight: bold;
  }
}

@font-face {
  font-family: 'Delius Swash Caps';
  src: url('/fonts/DeliusSwashCaps-Regular.ttf') format('truetype');
  font-weight: 400;
}
