/************************** Common Classes Start **************************/

/*:root {

    --theme-color-primary: #4fcf4d;
    --theme-color-secondary: #fff;

    --label-color: #fff;
    --label-hover-color: #fff;

    --text-color-primary:#4fcf4d;
    --text-color-secondary: #fff;
    --text-hover-color: #fff;

    --main-bg-color: #fff;
    --main-text-color: #000;
    --secondary-bg-color: #fff;
    --secondary-bg-color-op: #fff;

    --header-bg-color:#131313;
    --header-txt-color: #fff;

    --sidebar-bg-color: #fff;
    --sidebar-menu-color: #fff;

    --btn-txt-color: #fff;
    --btn-bg-color:#4fcf4d;
    --btn-hover-txt-color: #fff;
    --btn-hover-bg-color:#358734;
    --btn-disabled-bg-color: #fff;

    --input-txt-color: #fff;
    --input-bg-color: #fff;

    --dropdown-bg-color: #fff;
    --dropdown-txt-color: #fff;

    --chat-panel-bg-color: #fff;

    --modal-body-bg-color: #fff;
    --modal-header-bg-color: #fff;

    --modal-input-bg-color: #fff;
    --modal-input-txt-color: #fff;

    --bg-color-1: #fff;

    --table-border-color: #fff;
    --table-row-evenbg-color: #fff;
    --table-row-oddbg-color: #fff;
    --table-txt-color: #fff;
    --table-head-bg-color: #fff;

    --icon-color: #fff;
    --icon-hover-color: #fff;

    --footer-bg-color: #fff;
    --footer-txt-color: #fff;

    --commn-search-bg-color: #fff;
    --commn-border-color: #fff;

    --footer-nav-bg-color: #fff;
    --footer-nav-txt-color: #fff;
    --footer-nav-icon-color: #fff;
    --canvas-bg-img: 'assets/frontend/images/canvas.jpg';
    --vantatheme:0x42ff3f;

    --bs-font-Microsoft: Microsoft Yahei!important;
    --head-font-Nunito:Nunito,sans-serif!important
}*/

@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');

* {
    box-sizing: border-box;
}
.show-password-icon {
    float: right;
    right: 16px;
/*    margin-left: -25px;*/
    margin-top: -35px;
    position: relative;
    z-index: 2;
    top: -9px;

}
#hero{
    height: 100vh;  
}

h1 {
    font-weight: bold;
    margin: 0;
}

p {
    font-size: 14px;
    font-weight: 100;
    line-height: 20px;
    letter-spacing: .5px;
    margin: 20px 0 30px;
}

span {
    font-size: 12px;
}

a {
    color: var(--text-color-secondary);
    font-size: 14px;
    text-decoration: none;
    /*margin: 15px 0;*/
}

/*.container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2), 0 10px 10px rgba(0, 0, 0, .2);
    position: relative;
    overflow: hidden;
    width: 1000px;
    max-width: 100%;
    min-height: 480px;
    z-index: 100;
}*/

.form-container{
    background: var(--text-color-primary);
    border-radius: 8px;
}

.social-container {
    margin: 20px 0;
}

.social-container a {
    border: 1px solid #ddd;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    height: 40px;
    width: 40px;
}

.form-container input,.form-container select  {
    background: var(--input-background-color)!important;
    color: var(--input-txt-color)!important;
    border: none;
    padding: 12px 15px;
    margin: 8px 0;
    width: 100%;
}

#login-form button,#frmSignup button {
    border-radius: 20px;
    border: 1px solid var(--btn-bg-color)!important;;
    /* background: rgba(232,33,33,1); */
    color: var(--text-color-primary);
    font-size: 12px;
    font-weight: bold;
    padding: 12px 45px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 80ms ease-in;
}

button:active {
    transform: scale(.95);
}

button:focus {
    outline: none;
}

button.ghost {
    background: transparent;
    border-color: #fff;
}

/*.form-container {
    position: absolute;
    top: 0;
    height: 100%;
    transition: all .6s ease-in-out;
}*/
.section-signup{
    z-index: 9;
    height: 100vh;
}
.sign-in-container {
    left: 0;
    width: 100%;
    z-index: 2;
}

.sign-up-container {
    left: 0;
    width: 50%;
    z-index: 1;
    opacity: 0;
}

.overlay-container {
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    overflow: hidden;
    transition: transform .6s ease-in-out;
    z-index: 100;
}

/*.overlay {
    background: #ff416c;
    /* background: linear-gradient(to right, #ff4b2b, #ff416c) no-repeat 0 0 / cover; */
    /*color: #fff;
    position: relative;
    left: -100%;
    height: 100%;
    width: 200%;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
}*/

.overlay-panel {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    height: 100%;
    width: 50%;
    text-align: center;
    transform: translateY(0);
    transition: transform .6s ease-in-out;
}

.overlay-right {
    right: 0;
    transform: translateY(0);
}

.overlay-left {
    transform: translateY(-20%);
}

/* Move signin to right */
.container.right-panel-active .sign-in-container {
    transform: translateY(100%);
}

/* Move overlay to left */
.container.right-panel-active .overlay-container {
    transform: translateX(-100%);
}

/* Bring signup over signin */
.container.right-panel-active .sign-up-container {
    transform: translateX(100%);
    opacity: 1;
    z-index: 5;
}

/* Move overlay back to right */
.container.right-panel-active .overlay {
    transform: translateX(50%);
}

/* Bring back the text to center */
.container.right-panel-active .overlay-left {
    transform: translateY(0);
}

/* Same effect for right */
.container.right-panel-active .overlay-right {
    transform: translateY(20%);
}

.footer {
	margin-top: 25px;
	text-align: center;
}


.icons {
	display: flex;
	width: 30px;
	height: 30px;
	letter-spacing: 15px;
	align-items: center;
}

/*.sign-in{
    width: 400px !important;
}*/

/*.sign-up{
    min-height: 600px;
}*/

.bottom-img {
    position: absolute;
    bottom: 0rem;
    left: 0px;
    right: 0px;
}
.btn-submitt{
    cursor: pointer;
    background-color: var(--btn-bg-color)!important;
    border: none!important;
    color: #fff;
  }
  @media only screen and (max-width: 600px){
    .vanta-canvas{
        height: 800px!important;
    }
}
  
.d-flex {
    vertical-align: middle;
    align-items: center;
}

.overlay .text-center {
    margin: 34px 0px !important;
}

#reset-password .show-password-icon {
    float: right;
	right: 16px;
	margin-left: -21px;
	margin-top: inherit;
	position: absolute;
	z-index: 2;
	color: #000 !important;
	top: 5px;
}

#tooltip_info {
    position: absolute;
    width: 270px;
    padding: 15px;
    background: #242424;
    font-size: 14px;
    border-radius: 5px;
    box-shadow: 0 1px 3px #ccc;
    border: 1px solid #ddd;
    text-align: left;
    top: 55px;
    left: 205px;
    display: none;
    color: #fff;
}

.pw-errors {
    list-style-type: none;
    padding-left: 1rem;
}

.valid-pw {
    background: url(../images/valid.png) no-repeat 0 50%;
    padding-left: 22px;
    line-height: 24px;
    color: #3a7d34;
}

.invalid-pw {
    background: url(../images/invalid.png) no-repeat 0 50%;
    padding-left: 22px;
    line-height: 24px;
    color: #ec3f41;
}

span.fa.fa-fw.fa-eye.show-password-icon.toggle-password {
    /*color: var(--modal-box-txt-color)!important;*/
    color: #000;
}
.f15{
    font-size: 15px;
}
.verify-container{
    margin-top: 100px;
}
.verify-container img{
    height: 35px;
}
.digit-group input, .digit-group-forgot input {
    width: 60px;
    height: 60px;
    border: none;
    line-height: 50px;
    text-align: center;
    font-size: 24px;
    font-family: 'Raleway', sans-serif;
    font-weight: 800;
    color: #000 !important;
    margin: 0 2px;
    border-radius: 18px;
    background-color: #ffffff;
    border: 1px solid #2f8f1f;
}
.verify-container #otp-verify{
    padding: 15px 65px;
}
.verify-container .container1 {
    box-shadow: 0px 0px 8px 0px #02025044;
}
.verify-container .f17{
    font-size: 17px;
  }