* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --white: #ffffff;
  --white-200: #f7fafc;
  --gray: #1a202c;
  --purple-light: #2b6cb0;
  --button: #1a202c;

  --font1: "Poppins", sans-serif;
}

input,
button {
  outline: none;
}

main {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#frm-login,
#frm-recuperar-senha {
  max-width: 350px;
  width: 100%;
  padding: 30px 20px;
}

.img-cliente {
  width: 100%;
  margin-bottom: 1rem;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.img-cliente img {
  width: 170px;
  height: 100%;
  object-fit: cover;
}

.logo-kndoc {
  width: 100%;
  margin-bottom: 1rem;
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.logo-kndoc img {
  margin-top: 30px;
  padding-left: 10px;
  width: 150px;
  border-radius: 0;
}

.inputs {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.6875rem;
  position: relative;
}

.inputs label {
  font: 500 .9rem var(--font1);
  color: var(--gray);
  margin-bottom: 0.6875rem;
}

.inputs input {
  font: 400 .9rem var(--font1);
  padding: 10px 40px 10px 17px;
  border: 1px solid #e8e8e8;
  border-radius: 4px;
}

.inputs i {
  position: absolute;
  right: 15px;
  top: 44px;
}

.inputs .icon-click {
  cursor: pointer;
}

#msg-erro,
#msg-sucesso {
  font: 500 .8rem var(--font1);
  margin-top: 1.2rem;
}

#msg-erro {
  color: #FF0000;
}

#msg-sucesso {
  color: #008000;
}

#login-low {
  display: flex;
  justify-content: space-between;
  margin-top: .5em;
  margin-bottom: 1rem;
}

#esqueceu-senha {
  font: 500 .9rem var(--font1);
  color: var(--purple-light);
  /* margin: 1rem 0; */
  cursor: pointer;
  width: fit-content
}

#esqueceu-senha:hover {
  text-decoration: underline;
}

#caps {
  font: 500 .9rem var(--font1);
  color: #999;
}

#entrar,
#recuperar {
  font: 500 .9rem var(--font1);
  color: var(--white);
  width: 100%;
  padding: 11px 0;
  border: none;
  border-radius: 4px;
  background: var(--button);
  cursor: pointer;
}

.container-recuperar h1 {
  font: 400 1.5rem var(--font1);
  color: var(--gray);
  margin-bottom: 20px;
}

.container-recuperar p {
  margin-bottom: 20px;
}

#frm-recuperar-senha .email__usuario {
  margin-bottom: 18px;
  margin-top: 3px;
}

#frm-recuperar-senha .email__usuario p {
  font: 400 1rem var(--font1);
  color: var(--purple-light);
  text-align: center;
}