body {
  font-family: 'Syne', sans-serif;
}

#container {
  background-color: var(--main_bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#content {
  padding: 0.5rem;
  margin-bottom: 5rem;
}

form {
  padding-bottom: 6rem;
}
.errors {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--error_color);
}

.brand {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: space-between;
  width: 100%;
}

.info_text {
    color: rgb(123, 123, 123);
    font-size: 0.9rem;
}

#buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

/* -------------------- count down --------------------*/
#countdown-number {
  margin: auto;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 40px;
  color: var(--main_color);
  font-size: 1.2rem;
  border: 1px solid var(--main_color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
}
