@charset "utf-8";

@font-face { font-family: "Noto Sans TC"; font-style: normal; font-weight: 400 700; src: url("../fonts/NotoSansTC-VariableFont_wght.ttf") format("opentype"); }

/* GLOBAL - Start */

:root {
  --clr-bg: #ffffff;
  --clr-text: #3f3f3f;
  --clr-accent-bg: #353945;
  --clr-accent-text: #ffffff;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100svh;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.25;
  font-family: "Noto Sans TC", sans-serif;
}

h1 {
  font-size: 2rem;
  font-weight: normal;
  text-transform: uppercase;
}

a{
  text-decoration: unset;
}

.svh-100{
  height: 100svh;
}

.svh-20{
  height: 20svh;
}

.grey{
  color: #777E90;
}

.black{
  color: #000000;
}

.font-size-small{
  font-size: 12px;
}

.section-alert {
  position: fixed;
  right: 1rem;
  top: 1rem;
  width: min(32rem, calc(100% - 2rem));
  z-index: 999;
}

/* GLOBAL - End */

.ln-left{
  background-color: var(--clr-accent-bg);
  color: #ffffff;
}

/* Forms - Start */

.logo{
  background-color: #ffffff;
  padding: 12px 35px;
  border-radius: 90px;
  display: inline-block;
}

.logo > img {
  height: 5rem;
  object-fit: contain;
}

.login-form {
  width: 20rem;
}

.row {
  --bs-gutter-x: 0.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
}

.form-control {
  padding: 0.5rem 0.75rem;
  border: none;
  border-radius: 8px;
  line-height: inherit;
  background-color: #EDF2F7;
}

.form-link {
  font-size: 0.875rem;
  font-weight: bold;
}

.btn-primary {
  --bs-btn-color: #ffffff;
  --bs-btn-bg: #000000;
  --bs-btn-border-color: #000000;
  --bs-btn-hover-color: #ffffff;
  --bs-btn-hover-bg: #000000;
  --bs-btn-hover-border-color: #000000;
  --bs-btn-active-color: #ffffff;
  --bs-btn-active-bg: #000000;
  --bs-btn-active-border-color: #000000;
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-left: auto;
  margin-right: auto;
  border-radius: 90px;
  line-height: inherit;
  text-transform: uppercase;
  transition: opacity .15s ease-in-out;
}



/* Forms - End */