* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

input:focus-visible {
  outline: none;
  box-shadow: none;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.auth-header,
.auth-footer {
  flex-shrink: 0;
  text-align: center;
  padding: 1rem;
}

.auth-footer {
  color: #BDBDBD;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
}

.auth-footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.auth-footer a {
  text-decoration: underline;
}

#auth-app {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

.d-flex {
  display: flex;
}

.justify-space-between {
  justify-content: space-between;
}

.align-items-center {
  align-items: center;
}

.me-3 {
  margin-right: 16px;
}

@media (max-height: 700px) {
  #auth-app {
    align-items: flex-start;
    padding-top: 3rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0;
  }

  .auth-footer-content {
    display: block;
    text-align: center;
  }

  .auth-footer-content div:first-child {
    justify-content: space-around;
    margin-bottom: 16px;
  }
}

.form-error-message {
  color: #ff4d4f;
  text-align: center;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}

.form-success-message {
  color: #00FF00;
  text-align: center;
  font-size: 14px;
  margin-bottom: 12px;
  font-weight: 500;
}