h1 {
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 64px;
  font-weight: 900;
}
@media (max-width: 650px) {
  h1 {
    font-size: 40px;
  }
}
p + h1 {
  margin-top: 30px;
}

h2 {
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 650px) {
  h2 {
    font-size: 22px;
  }
}
p + h2 {
  margin-top: 22px;
}

h3, h4, h5, h6 {
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 650px) {
  h3, h4, h5, h6 {
    font-size: 18px;
  }
}
p + h3, p + h4, p + h5, p + h6 {
  margin-top: 14px;
}

p, li {
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 20px;
}
@media (max-width: 650px) {
  p, li {
    font-size: 16px;
  }
}
p + p, p + li {
  margin-top: 14px;
}

code {
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  font-family: "Source Code Pro";
  font-size: 20px;
  padding: 0px 6px;
  background-color: #ececec;
}
@media (max-width: 650px) {
  code {
    font-size: 16px;
  }
}

a {
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  font-size: 20px;
  color: #1849fa;
}
@media (max-width: 650px) {
  a {
    font-size: 16px;
  }
}

.button {
  background-color: #ececec;
  color: #2a2a2a;
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: transform 0.25s ease-in-out;
  position: relative;
}
.button:hover, .button:focus {
  transform: scale(1.05);
}
.button--fill {
  background-color: #1849fa;
  color: #ffffff;
}
.button--folder {
  padding-left: 55px;
}
.button--folder::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/folder.svg");
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button--link {
  padding-right: 55px;
}
.button--link::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("../images/link.svg");
  width: 18px;
  height: 18px;
  margin-top: -1px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.button--outline {
  background-color: unset;
  border: 2px solid #ececec;
}

.login-window {
  background-color: #ffffff;
  max-width: 360px;
  width: 100%;
  padding: 0px 25px 45px;
  box-sizing: border-box;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.login-window__logo {
  border-radius: 100%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  margin-top: -50px;
}
.login-window__logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.login-window__content {
  text-align: center;
}
.login-window__title {
  font-size: 24px;
  margin-bottom: 5px;
}
.login-window__description {
  max-width: 275px;
  line-height: 20px;
}
@media (max-width: 650px) {
  .login-window__description {
    max-width: 220px;
  }
}
.login-window__error {
  font-size: 14px;
  line-height: 14px;
  color: #ee404c;
}
.login-window__error--hidden {
  display: none;
}
.login-window__form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.login-window__input {
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 0px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border: 1px solid rgb(210.5, 210.5, 210.5);
  font-size: 20px;
  cursor: var(--cursor-pointer);
  text-align: center;
}
.login-window__submit {
  all: unset;
  color: #2a2a2a;
  font-family: "Source Sans 3", system-ui, sans-serif;
  margin: 0;
  padding: 0;
  padding: 10px;
  background-color: #3D5289;
  color: #ffffff;
  border-radius: 0px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  text-align: center;
  transition: font-size 0.25s ease-in-out;
}
.login-window__submit:hover {
  font-size: 18px;
}

html {
  --cursor-regular: url("../images/cursor-default.png"), auto;
  --cursor-pointer: url("../images/cursor-pointer.png"), pointer;
  cursor: var(--cursor-regular);
}

body {
  background-color: #ececec;
  background-image: url("../images/background.webp");
  background-size: cover;
  background-attachment: fixed;
  margin: 0px;
  height: 100%;
}
body a, body button {
  cursor: var(--cursor-pointer) !important;
}
body #main-content {
  width: 100%;
  margin: 0px auto;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}
@media (max-width: 475px) {
  body #main-content {
    padding: 20px;
  }
}

/*# sourceMappingURL=../login.css.map */