/*
Template Name:  Ling- Multistep Form & Login, Registration Form Template
Description:  Ling- Multistep Form & Login, Registration Form, Commin Soon HTML5 Template
Version: 1.0
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&family=Roboto:wght@400;500;700&display=swap');
body{
	margin: 0;
	padding: 0;
	font-size: 16px;
	color: #191919;
	font-family: 'Poppins', sans-serif;
	font-weight: normal;
	font-style: normal;
}
a,
button {
	-webkit-transition: all 0.3s ease-out 0s;
	-moz-transition: all 0.3s ease-out 0s;
	-ms-transition: all 0.3s ease-out 0s;
	-o-transition: all 0.3s ease-out 0s;
	transition: all 0.3s ease-out 0s;
}
*::-moz-selection {
	background: #d6b161;
	color: #000;
	text-shadow: none;
}
::-moz-selection {
	background: #8f32f3;
	color:#000;
	text-shadow: none;
}
::selection {
	background: #8f32f3;
	color: #000;
	text-shadow: none;
}
*::-moz-placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
*::placeholder {
	color: #555555;
	font-size: 14px;
	opacity: 1;
}
h1,h2,h3,h4,h5,h6,p{
	margin:0;
	padding: 0;
}
ul{
	margin:0;
	padding: 0;
	list-style: none;
}
a{
	text-decoration: none;
	transition: .4s;
	-webkit-transition: all .4s ease-in-out;
}
a:hover{
	text-decoration: none;
	color: #82B60B;
}
button:focus{
	outline: none;
}
input:focus{
	outline: none;
}
p{
	color: #191919;
}

:root {
    --stepNumber: 6;
}
/*======================================================================================*/
/*  form2 start  */
/*======================================================================================*/

.logo a img{
    max-width: 250px;
    width: 100%;
    height: auto;
}

.min-vh-100 {
  min-height: 100vh !important;
}
.login-page-left {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 40px 0px;
}
.login-page-left::after {
  content: "";
  clear: both;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #3807c14a;
  z-index: -1;
}
.login-page-left h3 {
  color: #fff;
  font-size: 40px;
  text-transform: capitalize;
  font-weight: 700;
  line-height: 1.2;
}
.login-page-left p {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  color: #fff;
  margin-top: 20px;
}
.right-content {
    background: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 50px 35px 10px 35px;
    width: 70%;
    margin: 0 auto;
}
.right-content h3 {
    font-size: 35px;
    font-weight: 600;
    margin: 0 0 30px 0;
}
.right-content .form-outer {
    width: 100%;
    overflow: hidden;
}
.right-content .form-outer .form-list-outer {
    display: flex;
    width: calc(100% * var(--stepNumber));
}
.form-outer .form-list-outer .page {
    width: calc(100% / var(--stepNumber));
    transition: margin-left 0.3s ease-in-out;
}
.form-outer .form-list-outer .page .title {
    text-align: left;
    font-size: 25px;
    font-weight: 500;
}
.form-outer .form-list-outer .page .field {
    width: 100%;
    margin: 45px 0;
    display: flex;
    position: relative;
}
.form-list-outer .page .field .label {
    position: absolute;
    top: -30px;
    font-weight: 500;
}
.form-list-outer .page .field select,
.form-list-outer .page .field input {
   width: 100%;
  border-radius: 5px;
  border: 1px solid transparent;
  box-sizing: border-box;
  box-shadow: none;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 20px;
  transition: all .3s ease;
  color: #696E76;
  height: 60px;
  background: #E8E9EA;
}

.form-list-outer .page .field input.invalid-input {
    border-color: red;
}
.form-list-outer .page .field select {
    width: 100%;
    padding-left: 10px;
    font-size: 17px;
    font-weight: 500;
}
.form-list-outer .page .field button {
  width: 100%;
  height: calc(100% + 5px);
  border: none;
  background: #280367;
  margin-top: -20px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.5s ease;
  padding: 16px 0;
}
.form-list-outer .page .field button:hover {
  background: #3e1280;
}
.form-list-outer .page .btns button {
    margin-top: -20px !important;
}
.form-list-outer .page .btns button.prev {
    margin-right: 3px;
    font-size: 17px;
}
.form-list-outer .page .btns button.next {
    margin-left: 3px;
}
.right-content .top-progress-bar {
    display: flex;
    margin: 40px 0;
    user-select: none;
}
.right-content .top-progress-bar .step {
    text-align: center;
    width: 100%;
    position: relative;
}
.right-content .top-progress-bar .step p {
    font-weight: 500;
    font-size: 18px;
    color: #312c2c;
    margin-bottom: 8px;
}
.top-progress-bar .step .bullet {
    height: 25px;
    width: 25px;
    border: 2px solid #312c2c;
    display: inline-block;
    border-radius: 50%;
    position: relative;
    transition: 0.2s;
    font-weight: 500;
    font-size: 16px;
    line-height: 21px;
}
.top-progress-bar .step .bullet.active {
    border-color: #3E0886;
    background: #3E0886;
}
.top-progress-bar .step .bullet span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.top-progress-bar .step .bullet.active span {
    display: none;
}
.top-progress-bar .step .bullet::before, .top-progress-bar .step .bullet::after {
  position: absolute;
  content: "";
  bottom: 9px;
  left: 22px;
  height: 3px;
  width: 75px;
  background:transparent;
}

.top-progress-bar .step .bullet.active:after {
    background: #3E0886;
    transform: scaleX(0);
    transform-origin: left;
    animation: animate 0.3s linear forwards;
}
@keyframes animate {
    100% {
        transform: scaleX(1);
    }
}
.top-progress-bar .step:last-child .bullet:before,
.top-progress-bar .step:last-child .bullet:after {
    display: none;
}
.top-progress-bar .step p.active {
    color: #3E0886;
    transition: 0.2s linear;
}
.top-progress-bar .step .check {
    position: absolute;
    left: 50%;
    top: 70%;
    font-size: 15px;
    transform: translate(-50%, -50%);
    display: none;
}
.top-progress-bar .step .check.active {
    display: block;
    color: #fff;
}

@media screen and (max-width: 660px) {
    :root {
        --containerWidth: 400px;
    }
    .top-progress-bar .step p {
        display: none;
    }
    .top-progress-bar .step .bullet::after,
    .top-progress-bar .step .bullet::before {
        display: none;
    }
    .top-progress-bar .step .bullet {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .top-progress-bar .step .check {
        position: absolute;
        left: 50%;
        top: 50%;
        font-size: 15px;
        transform: translate(-50%, -50%);
        display: none;
    }
    .step {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
@media screen and (max-width: 490px) {
    :root {
        --containerWidth: 100%;
    }
    .right-content {
        box-sizing: border-box;
        border-radius: 0;
    }
}
/*======================================================================================*/

