.login-signup {

    display: flex;

    min-height: 100vh;

    position: relative;

    align-items: stretch;

}

.login-signup::after {

    content: "";

    position: absolute;

    left: 0;

    top: 0;

    width: 100%;

    height: 15px;

    background: linear-gradient(90deg, #0F5729 0%, #31814F 100%);

    z-index: 1;

}

.login-signup::before {

    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 100%;

    height: 15px;

    background: linear-gradient(90deg, #0F5729 0%, #31814F 100%);

    z-index: 1;

}

.left {

    flex: 1;

    background: #fff;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

}

.left h4 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.inner-text {

    max-width: 470px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    width: 100%;

    margin: 50px 0
}

.inner-text figure {

    width: 100%;

    margin: 40px 0 0 0;

    height: 653px;

    border-radius: 30px;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.inner-text figure:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000000B2;
}

.inner-text figure img {
    position: relative;
    z-index: 9;
    max-width: 250px;
}

.inner-text .logo {
    width: 144px;
    display: block;
}

.inner-text .logo img {
    width: 100%;
    height: auto;
}

.right {
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;

}

.right::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/log-bg2.jpg") center/cover no-repeat;
  z-index: -1;
  animation: zoomBg 10s linear infinite alternate;
}

@keyframes zoomBg{
  from{ transform: scale(1); }
  to{ transform: scale(1.2); }
}


.right:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: "";
    background: #000000B2;
}

.right form {
    position: relative;
    z-index: 9;
   background: rgba(255,255,255,0.9);
backdrop-filter: blur(8px);
    border: 1px solid rgba(220, 229, 223, 0.6);
    border-radius: 20px;
    padding:0 45px 45px 45px;
    max-width: 590px;
    width: 100%;
    margin: 50px 0;
}


.right form .top {
    width: 100%;
    text-align: center;
}

.right form .top h4 {
    margin-bottom: 15px; text-transform: capitalize;
}

.right form .top p {
    font-size: 15px;
    line-height: 24px;
    max-width: 450px;
    margin: 0 auto 25px;
}

.right form .form-row {
    margin-bottom: 15px;
}

.right form .form-row label {
    font-size: 16px;
    line-height: 20px;
    font-weight:500;
    margin-bottom: 8px;
    display: inline-flex;
}

.right form .form-row .form-control {

    border-radius: 10px;

    background: #fff;

    border: 1px solid #DCE5DF;

    height: 45px;

}

.right form .remember {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 40px;

}

.right form .form-row .forgot {
    font-size: 16px;
    font-weight: 400;
    color: #636370;
    text-decoration: underline;
}

.right form .form-row .forgot:hover {
    text-decoration: none;
}

.right form .form-row .common-btn {
    width: 100%;
}

.right form .form-row.last {
    margin-bottom: 0;
}

.right form .form-row.last p {

    margin: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
    color: #636370;

}

.right form .form-row.last p a {
    color: #0F5729;
    font-weight: 500;
}

.right form .form-row.last p a:hover {
    text-decoration: underline;
}

.right form .btn-row {
    margin-bottom: 50px;
}

.right form .form-row .common-btn {
    text-transform: uppercase;
}

.logo-box {
    background: linear-gradient(289deg, #0F5729 0%, #31814F 100%) !important;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: -60px auto 30px;
}

.logo-box img{max-width:85px}

@media only screen and (max-width:1650px) {

    .inner-text {
        max-width: 400px;
    }

    .inner-text figure {
        height:400px;
    }

    .inner-text figure img {
        max-width: 130px;
    }

    .inner-text .logo {
        width: 130px;
    }

    .right form {
        max-width:750px;
    }
    .right form .top p {
    font-size: 15px;
    line-height: 20px;
}


}


@media only screen and (max-width:1450px) {

    .inner-text figure {
        height:300px
    }

    .inner-text {
        max-width: 320px;
    }

    .right form {
        padding: 0 30px 30px 30px;
        width: 70%;
    }

  
    .right form .form-row.remember {
        margin-bottom: 35px;
    }

    .right form .btn-row {
        margin-bottom: 40px;
    }

    .right form .form-row label {
        margin-bottom: 5px;
    }

    .right form .form-row {
        margin-bottom: 12px;
    }

}

@media only screen and (max-width:1024px) {
    .inner-text figure {
        height: 310px
    }
}



@media only screen and (max-width:991px) {

    .login-signup {
        height: 100%;
    }

    .inner-text {
        max-width: 350px;
    }

    .inner-text figure {
        height: 450px;
    }

    .inner-text figure img {
        max-width: 190px;
    }

    .inner-text .logo {
        width: 130px;
    }



    .right form .btn-row {
        margin-bottom: 50px;
    }

    .right form .form-row .col-md-12.col-lg-6 {
        margin-bottom: 15px
    }

    .right form .form-row .col-md-12.col-lg-6:last-child {
        margin-bottom: 0;
    }



}



@media only screen and (max-width:767px) {

    .inner-text figure {
        height: auto;
        display: none;
    }

    .login-signup {
        flex-direction: column;
        height: 100%;
    }

    .left {
        width: 100%;
        padding: 20px;
        height: auto;
    }

    .right {
        width: 100%;
    }



    .right form .top p {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .right form .top p br {
        display: none;
    }

    .right form .form-row {
        margin-bottom:0;
    }
 .right form .form-row .col-md-6 { margin-bottom:15px; }


    .right form .form-row label,
    .right form .form-row .forgot,
    .right form .form-row.last p {
        font-size: 14px;
    }

    .right form .form-row.remember {
        margin-bottom: 30px;
    }

.right form .form-row .common-btn {
    margin-bottom: 10px;
}

    .checkmark {
        width: 15px;
        height: 15px;
    }



}