/* login css  */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {

  
  /* background: #fff; */
  background: #f5fffa;
}

.main {
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: 'Questrial', sans-serif;
}

.login {
  height: 600px;
  width: 350px;
  /* align-items: center;
  justify-content: center;
  text-align: center; */
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 25px 30px black;
}

.login i {
  position: absolute;
}

.txt {
  text-decoration: none;
  border: none;
  background: none;
  margin-left: 40px;
  color: black;
}

.txt::placeholder {
  /* color: rgb(60 183 149); */
  color: #3A8DFD;
  
  font-size: smaller;
}

.txt:focus {
  outline: 0;
}

p {
  /* padding-top: 20px; */
  /* padding-top: 0px; */
  /* margin-left: 40px;
  font-size: smaller; */
}

.fp {
  margin-left: 210px;
  font-size: small;
}

.fp a {
  text-decoration: none;
  transition: 0.5s;
}

.fp a:hover {
  border-bottom: 0.1px solid purple;
}

h1 {
  padding: 40px;
  text-align: center;
}

.contact {
  display: flex;
  justify-content: space-around;
  margin-top: -200px;
  margin-left: 80px;
  margin-right: 80px;
  padding-top: 30px;
}

.contact i {
  transition: 0.3s;
}

.contact i:hover {
  transform: scale(1.1);
}

hr {
  border: 0.1px solid rgb(155, 152, 155);
  margin-left: 30px;
  margin-right: 30px;
}

/* .loginbtn {
  margin-left: 70px;
  margin-top: 30px;
  padding: 10px 80px;
  border: none;
  border-radius: 20px;
  background: #059862;
  color: white;
  font-weight: 700;
  letter-spacing: 2px;
  cursor: pointer;
  transition: 0.3s;
}

.loginbtn:focus {
  outline: 0;
}

.btn:hover {
  transform: scale(1.1);
} */

.signup {
  /* margin-left: 130px; */
  margin-left: 118px;
  font-size: smaller;
  color: rgb(73, 78, 77);
  margin-top: 10px;
}

.last {
  margin-left: 90px;
  margin-top: 30px;
  font-size: smaller;
  color: rgb(136, 129, 120);
}

.last p:nth-child(1) {
  margin-top: 10px;
}

.last p:nth-child(2) {
  margin-left: 60px;
  color: rgb(236, 124, 236);
  /* margin-top: 20px; */
}

.last a {
  text-decoration: none;
}