button {
  color: black;
  background-color: #cecfcf;
  border: none;
  outline: none;
  border-radius: 5px;
  width: min-content;
  margin: 5px;
  padding: 10px;
  overflow: hidden;
  transition: 0.2s;
  font-size: 0.85em; }
  button:hover {
    cursor: pointer;
    color: white;
    background-color: #3d3e40;
    transition: 0.1s; }
  button:active {
    color: white;
    background-color: #252628;
    transition: 0.05s; }
  button:disabled {
    color: #3d3e40;
    background-color: #909090;
    cursor: default;
    pointer-events: none; }

.button-regular {
  width: 150px; }

.loading {
  position: absolute;
  background-color: #1b1e23;
  display: flex;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  width: 100%;
  height: 100%;
  text-align: center; }
  .loading.show {
    opacity: 1;
    transition: 0s; }
  .loading.hide {
    height: 0;
    width: 0;
    z-index: 0;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0s 750ms, opacity 750ms; }

.login-form,
.signup-form {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 5px 0;
  padding-bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  overflow: hidden;
  transition: height 0s 0.25s, visibility 0s 0.25s, opacity 0.25s 0.25s; }
  .login-form.hidden,
  .signup-form.hidden {
    opacity: 0;
    height: 0;
    transition: height 0s 0.25s, visibility 0s 0.25s, opacity 0.25s; }
  .login-form .error-message.fixed-height,
  .signup-form .error-message.fixed-height {
    height: 1rem; }

.loginPage {
  height: 100%;
  width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; }
  .loginPage-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid gray;
    border-radius: 10px;
    padding: 25px 15px;
    padding-bottom: 30px;
    box-shadow: -2px 2px 10px 2px #0D0F11;
    width: 100%;
    height: max-content;
    transition: height 1s; }
  .loginPage-title {
    display: flex;
    justify-content: center;
    padding: 0 40px;
    text-align: center;
    margin-bottom: 25px;
    font-style: italic; }
  .loginPage header {
    padding-bottom: 15px;
    font-size: 1.5rem;
    font-weight: bold; }

.google-login {
  padding: 10px 0;
  margin: 5px;
  text-decoration: underline; }

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: max-content;
  height: 100vh;
  box-sizing: border-box;
  border-right: 1px solid grey;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center; }
  .menu title {
    margin: 50px 0; }
  .menu-section {
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    margin-bottom: 25px;
    align-items: center; }
    .menu-section-title {
      font-size: 1em;
      color: white;
      padding: 5px; }
  .menu-link {
    color: grey; }

#App {
  display: flex;
  justify-content: center;
  align-items: center; }

#root, #App {
  width: 100%;
  height: 100%; }

.error-message {
  color: red;
  font-size: 0.85em;
  text-align: center; }

.vert-filler {
  height: 100%; }

title {
  display: block; }

body {
  font-family: "AvenirNext", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1em;
  background-color: #1b1e23;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0; }

label {
  color: #cecfcf; }

input {
  color: white;
  background: transparent;
  border: none;
  border: 1px solid darkgray;
  border-radius: 5px;
  padding: 10px;
  margin: 10px;
  text-align: center;
  width: 80%; }

a {
  color: #cecfcf;
  font-size: 0.85em;
  transition: 0.05s;
  font-weight: bold; }
  a:hover {
    cursor: pointer;
    color: white; }
  a:active {
    color: #3d3e40; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-appearance: none;
  -webkit-text-fill-color: white;
  -webkit-text-fill-background: transparent;
  transition: background-color 5000s ease-in-out 0s; }
