html, body {
  margin: 0;
  padding: 0;
  color: #f8f9fa;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

/* thanks for the free obama button */
.google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #757575;
  border: 1px solid #dadce0;
  border-radius: 4px;
  padding: 16px 16px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.google-button img {
  width: 18px;
  margin-right: 10px;
}

.google-button:hover {
  background-color: #f1f3f4;
}

.container {
  position: relative;
  display: flex;
  height: 100dvh;
}

.column1 {
  height: 100dvh;
  width: 50%;
  background-image: url("https://wallpapers.com/images/hd/dark-theme-background-9ia9iwbwftd8ntp3.jpg");
  background-size: cover;
}

.column2 {
  height: 100dvh;
  width: 50%;
  text-align: center;
}

.mainBoxWrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100dvh;
  position: relative;
  background-color: #2b2b2b;
  overflow: hidden;
  border-left: 2px solid#495057;
}

.warning {
  font-size: 0.75rem;
  margin-top: 10px;
  padding-right: 25%;
  padding-left: 25%;
}

.loginHeader {
  margin: 5px;
  font-size: 2em;
}

.loginDescription {
  margin-top: 0px;
}

@media only screen and (max-width: 1000px) {
  .column1 {
    width: 100%;
  }
  .column2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mainBoxWrapper {
    width: 75%;
    height: min-content;
    min-height: 50%;
    border-radius: 25px;
    border: 2px solid #495057;
  }
  .topbarSubText {
    display: none;
  }
  .topbar {
    position: static !important;
  }
  .loginHeader {
    font-size: 1em;
  }
}

.topbar {
  background-color: #212529;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100%;
  height: 10dvh;
  min-height: 40px;
  max-height: 100px;
  border-bottom: 1px solid #495057;
}

.content {
  margin: 5px 0px;
  height: 100%;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.topbarLogo {
  aspect-ratio: 1/1;
  height: 75%;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
}

.topbarTextContainer {
  margin-left: 5px;
}

.topbarTextContainer p {
  margin: 0px;
}

.topbarText {
  font-size: 115%;
}

.topbarSubText {
  font-size: 80%;
}

.nameInputs {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.loginInput {
  width: 100%;
  padding: 8px;
  margin: 2px 0;
  box-sizing: border-box;
  color: #212529;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.loginInput:focus {
  outline: none;
  border-color: #495057;
  background-color: #f1f3f4;
}

.loginInput::placeholder {
  color: #2e2e2e;
  opacity: 1;
}

.loginInput:disabled {
  color: gray;
  cursor: not-allowed;
}

.loginInput.name {
  width: auto;
  flex-grow: 1;
  min-width: 0px;
}

.cancelButton {
  aspect-ratio: 1/1;
  position: absolute;
  right: 0;
  border: none;
  background: transparent;
  color: inherit;
  font-size: 2em;
  cursor: pointer;
  margin-right: 25px;
}

.loginForm {
  width: 75%;
}

.loginForm button {
  width: 25%;
  padding: 8px;
  margin: 2px 0;
  box-sizing: border-box;
  color: #212529;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  cursor: pointer;
}