@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  user-select: none;
}
:root {
  --poppins: "Poppins", sans-serif;
  --lato: "Lato", sans-serif;
  --light: #f9f9f9;
  --white: #fff;
  --grey: #eee;
  --dark-grey: #aaaaaa;
  --dark: #343a40;
  --green: #146835;
  --yellow: gold;
  --dem: #f5f7fd;
}
body {
  background-image: url(assets/img/pc_background.jpg);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  user-select: none;
  font-family: var(--poppins);
}
::selection {
  background: rgba(3, 101, 32, 0.777);
}
.wrapper {
  max-width: 500px;
  width: 100%;
  background: var(--dem);
  border-radius: 5px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
}
.wrapper .title {
  height: 90px;
  background: var(--green);
  border-radius: 0;
  color: var(--yellow);
  font-size: 27px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.info p {
  text-align: center;
  margin-top: 20px;
  color: var(--dark-grey);
}
.wrapper form {
  padding: 25px 35px;
}
.wrapper form .row {
  height: 60px;
  margin-top: 15px;
  margin-bottom: 2rem;
  position: relative;
}
.wrapper form .row input {
  height: 80%;
  width: 100%;
  outline: none;
  padding-left: 70px;
  border-radius: 6px;
  border: 0.1px solid var(--dark-grey);
  font-size: 18px;
  transition: all 0.3s ease;
}
form .row input:focus {
  border-color: #17753c;
}
form .row input::placeholder {
  color: var(--dark-grey);
}
.wrapper form .row .fas {
  position: absolute;
  width: 55px;
  height: 81%;
  color: var(--yellow);
  font-size: 22px;
  background: var(--green);
  border: 6px solid var(--green);
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 0px;
}
#icon-show {
  position: absolute;
  top: 1rem;
  right: 10px;
  color: var(--dark-grey);
  cursor: pointer;
}
.wrapper form .pass {
  margin-top: -18px;
  margin-left: 5px;
}
.wrapper form .pass a {
  color: var(--green);
  font-size: 17px;
  text-decoration: none;
  margin-top: 10px;
}
.wrapper form .pass a:hover {
  text-decoration: underline;
}
.wrapper form .button input {
  margin-top: 20px;
  color: var(--yellow);
  font-size: 20px;
  font-weight: 500;
  padding-left: 0px;
  background: var(--green);
  border: 1px solid var(--green);
  cursor: pointer;
}
#reset {
  margin-top: -10px;
}
form .button input:hover {
  background: var(--green);
}
.wrapper form .signup-link {
  text-align: center;
  margin-top: -35px;
  font-size: 17px;
  margin-bottom: 10px;
}
.wrapper form .signup-link a {
  color: var(--green);
  text-decoration: none;
}
form .signup-link a:hover {
  text-decoration: underline;
}
.title {
  margin: 0px auto;
}
img.logo {
  width: 50px;
  margin-top: 10px;
  margin-right: 5px;
}
.pass {
  float: right;
  margin-bottom: 10px;
}
.signup-link#remember {
  margin: -2rem auto 10px;
}
.signup-link a,
a {
  color: var(--green);
  font-weight: normal;
}

/*--------- preloader area ---------*/
.preloader-bg {
  position: fixed;
  z-index: 9999999;
  background: #fff;
  width: 100%;
  height: 100%;
}
.preloader {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader img {
  width: 60px;
}

/* Payment section */
#paymentForm .col {
  display: block;
  height: 40px;
  margin-bottom: 25px;
}
#paymentForm .col label {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}
#paymentForm input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 10px;
  background: #ffffff71;
}
#paymentForm .button {
  margin: 1px auto 10px;
}
#btns input {
  transition: all 300ms ease;
  color: var(--yellow);
}
#btns input:hover {
  background: #17753c;
  border: none;
}
