@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');
body {
    font-family: 'Montserrat';
}

.title h3 {
    font-size: 25px;
    color: var(--textclr);
    font-weight: 600;
    line-height: 35px;
}

.title {
    margin-bottom: 30px;
}

.main-form {
    background-color: #000000b3;
    height: 100vh;
}

.form-box {
    height: 100vh;
    flex-direction: column;
}

.input-box,
.signup-box,
.forgot-pass,
.Sign-in {
    padding: 0 20px;
    width: 100%;
}

label,
input {
    outline: 0;
}

.login-main {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 530px;
}

.cross-pop-up {
    position: absolute;
    top: 20px;
    right: 22px;
}

.cross-pop-up img {
    width: 15px;
}

.email-address,
.password {
    margin-bottom: 5px;
}

.login-bttn,
.signin-ltc,
.send-btn {
    margin-top: 20px;
}

.email-address input,
.password input,
.name-field input {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    width: 100%;
    height: 48px;
    padding: 0 10px;
    background-color: #f7f7f7;
    border: unset;
    border-radius: 5px;
}

input::placeholder {
    font-size: 15px;
    font-weight: 600;
    color: #a9a9a9;
}

.email-address label,
.password label,
.name-field label {
    font-size: 13px;
    color: #999;
    line-height: 20px;
    font-weight: 600;
}

.login-bttn button,
.sign-email button,
.send-btn button {
    background-color: var(--orange);
    color: var(--white);
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    border-radius: 5px;
    transition:transform 0.3s;
    -webkit-transition:transform 0.3s;
    -moz-transition:transform 0.3s;
    -ms-transition:transform 0.3s;
    -o-transition:transform 0.3s;
}

.bttn-box {
    display: flex;
    justify-content: space-between;
    margin: 11px 0;
}

.linkdin a,
.google a,
.sign-email button {
    background-color: #0a66c2;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: 100%;
    color: var(--white);
    padding: 12px 35px;
    justify-content: center;
}
.google button a{
color:#fff;
}
.facebook span,
.google span,
.sign-email span {
    margin-right: 10px;
}

.google a{
    background-color: #5d99fb;
    padding: 12px 40px;
}

.sign-text,
.return-login {
    margin-top: 40px;
}

.sign-text p,
.forgot-password p,
.forgot-pass p {
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.forgot-pass p {
    font-weight: 500;
    color: #222;
}

.sign-email button {
    background-color: var(--orange);
    margin-top: 20px;
}

.signup-box .sign-email button {
    margin-top: unset;
}

.sign-text .sign-up,
.login-text,
.sign-text {
    color: var(--orange);
}

.forgot-password {
    margin-top: 12px;
}

.social-box button {
    width: 100%;
    margin-bottom: 10px;
    padding: 15px 35px;
}
.social-box>div{
    position: relative;
    padding: 5px;
}
.social-box>div span{
    position: absolute;
    left: 20px;
}

.signup-box,
.forgot-pass,
.Sign-in {
    display: none;
}

.name-field {
    display: flex;
    gap: 20px;
    margin-bottom: 7px;
}

p#login-return span {
    margin-right: 5px;
}

.label-show input::placeholder {
    opacity: 0;
}

.signin-ltc p {
    font-size: 13px;
    font-weight: 600;
    color: #999;
    line-height: 19px;
}

.signin-ltc p a {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    text-decoration: underline;
}

.forgot-pass h3 {
    font-weight: bold;
    margin-bottom: 20px;
}

.main-form button.btn:hover,.main-form a:hover {
    transform: scale(1.025) perspective(1px);
}

.login-inner, .signup-box, .Sign-in, .forgot-pass {
    animation: idAppear .4s ease-in-out 0s 1 normal;
}
/* shubham */
#login{
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    visibility: hidden;
}
.google {
    margin-left: 10px;
}
.signup-box .google,.signup-box .facebook{
    margin: 0;
}
.facebook{
    margin-right: 10px;
}
.visible-pop-up{
    visibility: visible !important;
}
.visible-transition{
    transition: visibility 0.5s;
    -webkit-transition: visibility 0.5s;
    -moz-transition: visibility 0.5s;
    -ms-transition: visibility 0.5s;
    -o-transition: visibility 0.5s;
}
.login-main{
    transform: translate(0,-120%);
    -webkit-transform: translate(0,-120%);
    -moz-transform: translate(0,-120%);
    -ms-transform: translate(0,-120%);
    -o-transform: translate(0,-120%);
    transition: transform 0.5s;
    -webkit-transition: transform 0.5s;
    -moz-transition: transform 0.5s;
    -ms-transition: transform 0.5s;
    -o-transition: transform 0.5s;
}
.pop-up-transform{
    transform: translate(0,0%);
    -webkit-transform: translate(0,0%);
    -moz-transform: translate(0,0%);
    -ms-transform: translate(0,0%);
    -o-transform: translate(0,0%);
}
@keyframes idAppear {
    0% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
        opacity: 0
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1
    }
}
@media only screen and (max-width: 767px){
    .bttn-box{
        flex-direction: column;
    }
    .google,.facebook{
        margin: 0;
    }
    .google{
        margin-top: 11px;
    }
}