html {
  --main-black: #303030;
  --main-orange: #FF5500;
  --bg-grey: #F8F8F8;
  position: relative;
  min-height: 100%;
  /* font-size: 14px; */
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
}

.display-4 {
  text-align: center;
  margin: 2rem;
}

.login form {
  color: var(--main-black);
  text-align: center;
}

.login {
  background-color: var(--bg-grey);
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 25px;
  border: solid #e6e6e699 0.5px;
  border-radius: 10px;
}

.login-headline h1 {
  color: var(--main-black);
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
}

input {
  color: var(--main-black);
}

.login-input {
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0;
  padding: 3px;
  border-radius: 5px;
}

.login-input input {
  width: 100%;
  padding: 5px 4px;
  font-size: 14px;
  border: none;
  background-color: transparent;
}

::placeholder {
  color: #a4a4a4;
}

.login-input svg {
  margin: 0 8px;
}

.password-container {
  display: flex;
  width: 100%;
}

.toggle-password {
  width: 32px;
  height: 28px;
  background-color: transparent;
  border: none;
}

.toggle-password svg {
  margin: 0;
  padding: 0;
  stroke: #7f7f7f;
}

.login-confirm {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}

.login-confirm .checkbox {
  display: flex;
  font-size: 12px;
  margin: 24px
}

.checkbox input {
  margin-right: 5px;
}

.login p {
  text-align: right;
  margin: 0;
  text-decoration: underline;
  font-size: 11px;
}
.login a {
    text-align: right;
    margin: 0;
    color: var(--main-orange);
    text-decoration: underline;
    font-size: 11px;
}

.login-button {
  font-size: 15px;
  font-weight: 600;
  background-color: var(--main-orange);
  color: white;
  border: none;
  border-radius: 16px;
  padding: 10px 40px;
  margin: 0 auto;
}

.disabled {
  background-color: #b3b3b3;
}

#error-text {
  color: red;
  text-align: center;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 2rem;
}

h2 {
  font-size: 12px;
  text-align: center;
  margin-top: 10px;
}