body {
  background-color: #f8f9fa;
  font-family: "Poppins", sans-serif;
}

.card {
  border-radius: 10px;
}

ul li {
  font-size: 1.1rem;
  line-height: 2.8;
  font-weight: 600;
}

ul li i {
  margin-right: 10px;
}

.btn-block+.btn-block {
  margin-top: 0;
}

.icon-border{
  border: 1px solid #28a745;
  border-radius: 50%;
  padding: 8px;
}

.btn{border-radius: 20px;}
.btn-danger {
  color: #fff;
  background-color: #ff574d;
  border-color: #ff574d;
}
.btn-facebook{background: #316FF6; font-size: 14px;}
.btn-twitter{background: #1DA1F2; font-size: 14px;}
.btn-google{font-size: 14px; background-color: #db4537;}
.btn-login{height: 50px; border-radius: 50px;}

.heading-text{position: relative;}
.heading-text::after{
  content: "";
  height: 2px;
  width: 50px;
  background-color: #ff574d;
  position: absolute;
  bottom: -15px;
  transform: translateX(-50%);
  left: 50%;
}

.login-with{position: relative;}
.login-with::before{
    content: "";
    height: 1px;
    width: 32%;
    background: #CCC;
    position: absolute;
    left: 0;
    bottom: 10px;
}

.login-with::after{
  content: "";
  height: 1px;
  width: 32%;
  background: #CCC;
  position: absolute;
  right: 0;
  bottom: 10px;
}

.form-control{
  border-radius: 30px;
  padding: 24px 22px;
}

.form-control:focus{
  box-shadow: none;
  border: 1px solid #000;
}

.min-w-500{
  min-width: 460px;
}

@media (max-width: 600px) {
  .min-w-500{
    min-width: 100%;
  }
  ul li {
    font-size: 0.9rem;
    line-height: 2.8;
    font-weight: 600;
  }
  .icon-border {
      padding: 6px;
  }

  .login-with::before{
    content: "";
    width: 25%;
  }

  .login-with::after{
    content: "";
    width: 25%;
  }
}