* {
  box-sizing: inherit;
}

html,
body {
  height: 100%;
  box-sizing: border-box;
}

body {
  display: flex;
  flex-direction: column;
}

.narrow {
  max-width: 500px;
}

.forgot-password {
  float: right;
}

.title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}

.title-text {
  white-space: nowrap;
  margin: 0;
}

.logo {
  max-width: 48px;
  max-height: 48px;
  min-width: 36px;
  min-height: 36px;
}

.company {
  --pico-font-size: 1rem;
}

.tagline {
  font-size: 0.5rem !important;
}


main {
  flex: 1;
}

footer {
  width: 100%;
  align-self: flex-end;
  font-size: 0.8rem;
  border-top: 1px solid var(--footer-border-top-color);
  background: var(--footer-background-color);
  border-bottom: 1px solid var(--footer-border-bottom-color);
}

a {
  text-decoration: none;
  color: #878580;
}

a:hover {
  text-decoration: underline;
  color: #b3242e;
}

ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
  margin: 0;
}

.create-account {
  text-align: center;
  margin-top: 60px;
}

ul li a,
.create-account>a {
  white-space: nowrap;
}

.copyright {
  font-style: italic;
  font-size: 0.6rem;
  text-align: center;
  color: #878580;
  margin: 0;
  padding: 20px 0;
}

.btn-giris {
  --pico-color: #ffe0d6;
  --pico-primary-background: #b3242e;
  --pico-primary-hover-background: #c4353a;
  --pico-primary-focus: rgba(255, 1, 1, 0.375);
  --pico-primary-border: var(--pico-primary-background);
  border: var(--pico-border-width) solid var(--pico-primary-border);
}

@media (min-width: 240px) {

  .title {
    margin-top: 20px;
  }

  .company {
    --pico-font-size: 1.5rem;
  }

  .tagline {
    font-size: 0.8rem !important;
  }

  .logo {
    max-width: 48px;
    max-height: 48px;
  }
}

@media (min-width: 360px) {

  .title {
    margin-top: 20px;
  }

  .company {
    --pico-font-size: 2.2rem;
  }

  .tagline {
    font-size: 1rem !important;
  }

  .logo {
    max-width: 88px;
    max-height: 88px;
  }
}

@media (min-width: 576px) {

  :root,
  :host {
    --pico-font-size: 106.25%;
  }

  .title {
    margin-top: 48px;
  }

  .logo {
    max-width: 120px;
    max-height: 120px;
  }

  ul {
    flex-direction: row;
  }
}

@media (min-width: 768px) {

  :root,
  :host {
    --pico-font-size: 112.5%;
  }
}

@media (min-width: 1024px) {

  :root,
  :host {
    --pico-font-size: 118.75%;
  }
}

@media (min-width: 1280px) {

  :root,
  :host {
    --pico-font-size: 125%;
  }
}

@media (min-width: 1536px) {

  :root,
  :host {
    --pico-font-size: 131.25%;
  }
}

[data-theme=light],
:root:not([data-theme=dark]),
:host(:not([data-theme=dark])) {
  color-scheme: light;
  --pico-background-color: #f2f0e6;
  --footer-border-top-color: #FFFCF0;
  --footer-background-color: #E6E4D9;
  --footer-border-bottom-color: #CECDC3;
}

@media only screen and (prefers-color-scheme: dark) {

  :root:not([data-theme]),
  :host(:not([data-theme])) {
    color-scheme: dark;
    --pico-background-color: #1c1b1a;
    /* --pico-background-color: rgb(19, 22.5, 30.5); */
    --footer-border-top-color: #343331;
    --footer-background-color: #282726;
    --footer-border-bottom-color: #100F0F;
  }
}