.text-red {
  color: var(--red);
  font-family: "Poppins-Bold", sans-serif;
}

.fln-login {
  max-width: 375px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 71px 15px 70px 15px;
  margin: 0 auto;
}

.fln-login h2 {
  font-family: "Poppins-Medium", sans-serif;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: -0.4px;
  color: var(--text-black);
  text-align: center;
  display: flex;
  flex-direction: column;
}

.fln-login-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.fln-login-form label {
  font-family: "Poppins-SemiBold", sans-serif;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: -0.16px;
  color: var(--text-black);
  margin-top: 25px;
}

.fln-login-form input {
  background-color: #ffffff;
  border: 1px solid #dbdbdb;
  border-radius: 23px;
  padding: 13px 26px;
  font-family: "Poppins-Light", sans-serif;
  font-size: 14px;
  letter-spacing: -0.14px;
  line-height: 16px;
  color: #514848;
  outline: none;
  margin-top: 10px;
}
.fln-login-form > a {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 10px;
  line-height: 14px;
  color: var(--text-black);
  padding: 5px 0;
  color: #514848;
  text-decoration: underline;
  margin-bottom: 20px;
}

.fln-login-form button {
  color: var(--white);
  background-color: var(--red);
  font-family: "Poppins-Regular", sans-serif;
  font-size: 12px;
  letter-spacing: -0.12px;
  line-height: 16px;
  text-align: center;
  border: none;
  outline: none;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.fln-login-form button:disabled {
  background-color: rgb(107, 107, 107);
}

.fln-login-form input[type="checkbox"] {
  width: 15px;
  height: 15px;
  border-radius: 4px;
  margin: 0;
}

.fln-login-form div {
  padding: 25px 0;
  display: flex;
  flex-direction: row;

  & label {
    font-family: "Poppins-Regular", sans-serif;
    font-size: 12px;
    line-height: 16px;
    color: var(--text-black);
    margin-left: 10px;
    margin-top: 0;
  }

  & a {
    color: var(--red);
    text-decoration: none;
  }
}
.fln-login-form span:not(.loader) {
  font-family: "Poppins-Regular", sans-serif;
  font-size: 12px;
  line-height: 30px;
  color: var(--text-black);
  margin-top: 25px;

  & a {
    color: var(--red);
    text-decoration: none;
  }
}

@media (max-width: 768px) {}