.sign-in {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.sign-in-title {
  display: flex;
  gap: 0.5rem;
}
.sign-in-title h1 {
  width: fit-content;
  height: fit-content;
  padding-left: 8px;
  padding-right: 8px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4rem;
}
.sign-in-title h1:last-child {
  border-left: 1px solid #808080;
}
.sign-in-title .cgi-name {
  color: #ff0000;
}

.sign-in-btn {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  border-radius: 4px;
  box-shadow: 1px 1px 5px var(--muted);
  background-color: #5236AB;
  color: #fff;
  width: fit-content;
}

@media (max-width: 540px) {
  .sign-in-title {
    flex-direction: column;
  }
  .sign-in-title h1 {
    margin: auto;
  }
  .sign-in-title h1:last-child {
    border-top: 1px solid #808080;
    border-left: 0;
  }
}

/*# sourceMappingURL=sign-in.css.map */