* {
  padding: 0;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
body {
  background-image: url(https://preview.colorlib.com/theme/furn/assets/img/hero/h1_hero.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.flexContainer {
  overflow: auto;
}
input:focus{
  outline: none;
}
.login {
  background-color: white;
  width: 40%;

  margin: 10px auto;
  padding: 40px 50px;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}
.info {
  text-align: center;
  margin-bottom: 60px;
}
.info span {
  color: #140c40;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
  text-transform: capitalize;
}
p {
  color: #646d77;
  font-weight: normal;
  line-height: 1.4;
  margin-bottom: 20px;
  font-size: 14px;
}
.userName > label,
.password > label {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: #140c40;
  text-transform: capitalize;
  font-weight: 500;
}
.userName > input,
.password > input {
  border: 1px solid #c9c9c9;
  width: 100%;
  height: 50px;
  margin-bottom: 20px;
  padding: 0 25px;
  color: #140c40;

  width: 90%;
}
/* Customize the label (the container) */
.container {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding-left: 35px;
  margin-bottom: 80px;
  font-size: 17px;
  cursor: pointer;
  color: #140C40;
  font-weight: 500;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  border: #e4e4e4 0.5px solid;
  border-radius: 0.2em;
  background-color: white;
  -webkit-border-radius: 0.2em;
  -moz-border-radius: 0.2em;
  -ms-border-radius: 0.2em;
  -o-border-radius: 0.2em;
}

/* When the checkbox is checked, add a blue background */
.container input:checked ~ .checkmark {
  background-color: #fd8f5f;
  border:#fd8f5f  0.5px solid;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.container a {
  text-decoration: none;
  color: #fd8f5f;
}
.footer {
  display: flex;
  justify-content: space-between;
}
.footer p {
  color: #646d77;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: normal;
  line-height: 1.4;
}
.footer a {
  text-decoration: none;

  color: #fd8f5f;
}
.footer button {
  background-color: #fd8f5f;
  height: 60px;
  padding: 10px 43px;
  margin-top: -20px;
  border: 0;
  color: #fff;
  text-transform: capitalize;
  cursor: pointer;
  font-size: 16px;
}
.errorPara {
  color: red;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}
