@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background:linear-gradient(to right,black ,rgb(3, 3, 70));
}

.login{
  width: 100%;
  height: fit-content;
  padding: 40px 0px 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.wrapper {
  width: 50%;
  /* height: 40vh; */
  padding: 2rem 0 1rem 0;
  /* margin: 50px auto; */
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

@media(min-width:900px) {
  .wrapper{
    width: 40%;
  }
}
@media(min-width:1200px) {
  .wrapper{
    width: 30%;
  }
}

h1 {
  font-size: 2rem;
  color: #07001f;
}

p {
  margin-bottom: 1.7rem;
}

form input {
  width: 85%;
  outline: none;
  border: none;
  background: #dfe9f5;
  padding: 12px 14px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.recover {
  text-align: right;
  font-size: 0.8rem;
  margin: 0.2rem 1.7rem 0 0;
}

.recover a {
  text-decoration: none;
  color: #07001f;
}

#btn {
  font-size: 1.1rem;
  margin-top: 1rem;
  padding: 8px 0;
  border-radius: 5px;
  outline: none;
  border: none;
  width: 85%;
  background: tomato;
  color: #fff;
  cursor: pointer;
}

#btn:hover {
  background-color: rgba(122, 30, 30, 0.767);
  cursor: pointer;
}

.or {
  font-size: 0.8rem;
  margin-top: 1.5rem;
}

.icons i {
  color: white;
  padding: 00.8rem 1.5rem;
  border-radius: 10px;
  margin-left: .9rem;
  font-size: 1.5rem;
  cursor: pointer;
  border: 2px solid #dfe9f5;
  background: #07001f;
}

.icons i:hover {
  color: black !important;
  background: white;
  transition: 1s;
}

.icons i:first-child {
  color: green;
}

.icons i:last-child {
  color: blue;
}

.not-member {
  font-size: 0.8rem;
  margin-top: 1.4rem;
}

.not-member a {
  color: tomato;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

