/** ADD YOUR AWESOME CODES HERE **/

/** Footer Styles **/
footer.footer-box .container .row .col-xs-12.col-sm-6.col-md-6.col-lg-9 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

footer.footer-box .container .row .col-xs-12.col-sm-6.col-md-6.col-lg-9 ul {
  display: flex;
}

footer.footer-box
  .container
  .row
  .col-xs-12.col-sm-6.col-md-6.col-lg-9
  ul
  li
  a {
  position: relative;
  display: block;
  color: #666;
  font-size: 30px;
  height: 60px;
  width: 60px;
  background: #171515;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 15px;
  cursor: pointer;
  transition: 0.5s;
}

footer.footer-box
  .container
  .row
  .col-xs-12.col-sm-6.col-md-6.col-lg-9
  ul
  li
  a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: #095a83;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  z-index: -1;
  transform: scale(0.9);
  transition: 0.5s;
}

footer.footer-box
  .container
  .row
  .col-xs-12.col-sm-6.col-md-6.col-lg-9
  ul
  li
  a:hover:before {
  filter: blur(3px);
  transform: scale(1.2);
  box-shadow: 0 0 15px #095a83;
}

footer.footer-box
  .container
  .row
  .col-xs-12.col-sm-6.col-md-6.col-lg-9
  ul
  li
  a:hover {
  color: #095a83;
  box-shadow: 0 0 15px#095a83;
  text-shadow: 0 0 15px #095a83;
}

/** Login CSS**/

.section.layout_padding.contact_section {
  background-image: url("../images/Userloginbackground.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#login {
  background-color: honeydew;
  width: 70%;
  border-radius: 3%;
}

.Resettxt {
  font-size: 13px;
  line-height: 1.4;
}

.ResettxtContainer {
  text-align: end;
  margin-bottom: 3%;
}


/** Register CSS**/

#registerform {
  background-color: honeydew;
  width: 70%;
  border-radius: 3%;
  padding-bottom: 3%;
}

/** Reset Password CSS**/
#resetPwForm {
  background-color: honeydew;
  width: 70%;
  border-radius: 3%;
}

#resetPwText {
  padding-top: 3%;
}

#resetSubmitButton {
  padding-bottom: 3%;
}
/** Index Page **/

#ffdescription {
  list-style-type: circle;
}


