#login-accent-container {
  position: fixed;
  top: -15vw;
  right: -20vw;
  width: 60vw;
  border-radius: 100%;
}

#donut-center  {
  position: absolute;
  top: 15%;
  left: 15%;
  background-color: rgba(var(--brand-light-rgb));
  width: 70%;
  height: 70%;
  border-radius: 100%;
  z-index: 1;
}

#login-accent {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  animation: 6s ease-in-out -3.5s 1 accentEntrance;
}

form#login {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form#login #forgot-password {
  align-self: flex-end;
}

body main {
  margin: auto;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#divider {
    width: 100%;
    margin: .7em auto;
    overflow: hidden;
    text-align: center;
    font-weight: 300;
    color: #4C6065;
}

    #divider:before, #divider:after {
        color: #E7E8E7;
        content: "";
        display: inline-block;
        width: 50%;
        margin: 0 .5em 0 -55%;
        vertical-align: middle;
        border-bottom: 1px solid;
    }

    #divider:after {
        margin: 0 -55% 0 .5em;
    }

@media screen and (max-width: 600px) {
  form#login {
    max-width: unset;
    margin-top: 30vw;
  }

  body main {
    padding: 2rem;
    justify-content: flex-start;
  }
}

@keyframes accentEntrance {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}


