/* || GENERAL STYLES */

:root {
  --header-height: 80px;
}

* {
  font-family: 'Montserrat', sans-serif;
  /* color: var(--color-text); */
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: var(--color-background);
}

.login {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: var(--color-background-accent);
  height: 100dvh;
  width: 100dvw;
  max-height: 100dvh;
  max-width: 100dvw;
}


.login__banner {
  background: var(--color-primary);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  background: var(--color-primary);
  height: 100%;
  width: 100%;
  color: var(--color-text-inverted);
}

.login__banner--logo {
  max-height: 100px;
  margin-top: 2rem;
  max-width: 100px;
}


.login__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 25%;
  width: 100%;
  padding: 4rem;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}


/* reset */
.input,
.button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;

  /* inherit font & color from ancestor */
  /* color: inherit; */
  font: inherit;

  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;

  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;

  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

.button,
.input {
  height: 40px !important;
  border-radius: 6px;
  transition: all ease-in-out 100ms;
  text-align: center;
}

.input {
  width: 100%;
  background: var(--color-text-inverted);
  color: var(--color-primary) !important;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.input::placeholder {
  color: var(--color-text-medium);
}

.input:focus {
  outline: none;
  border: none;
}

.button {
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  position: relative;
  color: white !important;
  font-weight: bold;
  background: var(--color-primary);
  font-size: 20px;
}

.button:hover {
  background: var(--color-tertiary);
}

.button--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}


.login__content {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
  padding: 4rem;
  justify-content: space-between;
}

.login__content--logo {
  max-height: 300px;
}


.login__content__container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.login__content__container__title {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.login__content__container__title--name {
  font-weight: bold;
  line-height: 60px;
  letter-spacing: -2px;
  font-size: 80px;
}

.image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.background {
  position: relative;
  height: 100%;
  width: 100%;
}

.background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.background__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0.1;
  z-index: -1;
  filter: grayscale(100%);
}

.background__image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
  z-index: 1;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  max-width: 200px;
}

.wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.wrapper__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}

.wrapper__label__left {
  display: flex;
  align-items: center;
  gap: 2px;
}

.wrapper__label__left--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12px !important;
  width: 12px !important;
  color: var(--color-primary) !important;
}

.wrapper__label__left--name {
  font-weight: bold;
  font-size: 14px;
  color: var(--color-primary) !important;
}


.link {
  text-align: right;
}

.header {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-bottom: 4rem;
}

.header__title {
  font-size: 11px;
  color: black !important;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 45px;
}

.header__title--icon {
  height: 12px;
  width: 12px;
  padding: 0;
  margin: 0;
}

.header__brand {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.header__brand--logo {
  width: 100%;
  max-width: 300px;
}


@keyframes fadeOut {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    opacity: 0
  }
}

.slideshow {
  animation: fadeInOut 20000ms infinite ease-in-out;
}
