@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}

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

.brand-logo{
  width: 110px;
}

.contact-form {
  background-image: url(../assets/plain-background-img.jpg);
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.form-control {
  box-shadow: none;
  font-size: 16px;
  border-color: none;
  font-weight: 500;
  line-height: 61px;
  padding: 0 21px;
  border-radius: 0;
  background: transparent;
  color: #fff;
  border: 1px solid #47476d;
  outline: none;
}

.form-control:focus {
  background: transparent;
  color: #fff;
  box-shadow: none;
  outline: none;
  border-color: none;
}

label {
  font-weight: 600;
}

.contact-form h2 {
  font-size: 50px;
  line-height: 45px;
}

@media (max-width:500px){
  .contact-form h2{
    font-size: 30px;
  }
}
.login-form-box {
  max-width: 450px;
  margin: 0 auto;
}

.login-card {
  background-color: #20203e;
  padding: 30px;
  line-height: 2.8;
}

.hover-effect:hover {
  transform: translateY(-5px);
}

.login-form-box .login-card .btn-submit {
  font-size: 18px;
  line-height: 18px;
  font-weight: 500;
  padding: 18px 23px;
  margin-bottom: 16px;
  width: 100%;
  border: none;
  border-radius: 0;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
  margin-top: 20px;
  color: #fff;
  background-image: linear-gradient(90deg, #6b43f8 0%, #d217cb 100%);
}

.remember a {
  color: #d217cb;
  text-decoration: none;
  font-size: 20px;
}
.forgot-password{
  font-size: 16px !important;
}

.join-now-outer {
  font-size: 20px;
}

/* ----social-links---- */
.social-links .fa {
  color: white;
  height: 50px;
  width: 50px;
  margin: 0px 3px;
  border-radius: 50px;
  background-color: #2e2e4f;
  font-size: 15px;
  line-height: 50px;
  transition: 0.3s;
}

.social-links .fa:hover {
  background-image: linear-gradient(90deg, #6443f8 0%, #d217cb 100%);
}