/* css for sign pages */
input {
    background: transparent;
}

.sign-section {
    /* min-height: 80vh; */
    position: relative;
    padding: 4rem 0;
    background: url(../image/other/sign-bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    /* background-size: contain; */
    text-align: center;
}

.sign-page-title {
    color: #0E1133;
    font-family: 'Fira Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;

}

.sign-sub-title {
    color: #53545B;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
}

.sign-form {
    border-radius: 0.625rem;
    background: #FFF;
    box-shadow: 0px 40px 80px 0px rgba(2, 2, 26, 0.14);
    width: 40%;
    margin: auto;
    padding: 3rem;
    text-align: left;
}

.sign-label-input-container {
    margin: 1rem 0;
    /* border: 1px solid royalblue; */

}

.sign-label-input-container label {
    color: #0E1133;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2rem;
    margin: 0.5rem 0;
}

.sign-input-container {
    padding: 0.60rem;
    border-radius: 0.375rem;
    background: #F6F6F7;
    position: relative;
    /* border: 1px solid red; */
}

.sign-label-input-container input:not([type='checkbox']) {
    margin-left: 5px;
    background: transparent;
    width: 90%;
    /* border: 1px solid red; */
}

.col-4,
.col-8 {
    padding: 0;
}

.sign-label-input-container .col-8 {
    padding-left: 10px;
}

.sign-password-hint {
    margin-top: 10px;
    margin-bottom: 0;
    color: #8E8C94;
    font-size: 0.875rem;
    line-height: 1.625rem;
}

button.sign-btn {
    width: 100%;
    border-radius: 0.25rem;
    background: #2B4EFF;
    padding: 1rem;
    color: #FFF;
    font-family: Fira Sans;
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid transparent;
}

button.sign-btn:hover {
    background: #ffffff;
    color: #2B4EFF;
    border: 1px solid #2B4EFF;
}

button.sign-btn:disabled {
    background: #ccc;
    color: #666;
    cursor: not-allowed;
    border: 1px solid #ccc;
    opacity: 0.7;
    pointer-events: none;
}

p.sign-bottom-text {
    text-align: center;
    margin-bottom: 0;
    font-size: 1rem;
}

p.or {
    margin: 1rem auto;
    text-align: center;
    color: #8E8C94;
    font-size: 0.875rem;
    font-weight: 400;
}

.sign-label-input-container .col-8 input {
    width: 80%;
}

.col-6.forgot-password-link {
    text-align: right;
}


.sign-input-container.otp input {
    text-align: center;
    margin: auto;
}

.sign-label-input-container .timer {
    color: #2B4EFF;
    font-size: 1.125rem;
}

.sign-testimonial {
    border-radius: 10px;
    background: #FFF;
    box-shadow: 0px 0px 30px 40px rgba(1, 11, 60, 0.06);
    /* max-width: 330px; */
    padding: 1.5rem;
    color: #5F6C76;
    font-family: Poppins;
    font-size: 28px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: left;
}

.sign-testimonial p {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
}

.sign-testimonial .photo-details-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    /* justify-content: center; */
}

.sign-testimonial .clients-details-container {
    text-align: left;
}

.sign-testimonial .clients-details-container h4 {
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 700;
    line-height: 120%;
}

.sign-testimonial .clients-details-container h6 {
    color: #33B89F;
    font-family: Poppins;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
}

/* .sign-testimonial .photo-details-container img{
    aspect-ratio:1/1;
} */
.testimonial-1 {
    position: absolute;
    top: 4rem;
    right: 10vw;
    max-width: 350px;
}

.testimonial-2 {
    position: absolute;
    top: 25%;
    left: 8vw;
    max-width: 380px;
}

.testimonial-3 {
    position: absolute;
    bottom: 20%;
    right: 10vw;
    max-width: 350px;
}


.payment-method-container {
    display: flex;
    gap: 1rem;
    /* justify-content: space-between; */
}

.payment-method-container .payment-method img {
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.07);
    cursor: pointer;
}

.payment-method-container .payment-method.selected img,
.payment-method-container .payment-method:hover img {
    border: 1px solid #1363DF;
}








/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
    .testimonial-1 {
        top: 4rem;
        right: 2vw;
        max-width: 350px;
    }

    .testimonial-2 {
        top: 25%;
        left: 2vw;
        max-width: 350px;
    }

    .testimonial-3 {
        bottom: 20%;
        right: 2vw;
        max-width: 350px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) and (max-width: 1200px) {
    .sign-form {
        width: 50%;
    }

    .testimonial-1 {
        top: 4rem;
        right: 1vw;
        max-width: 245px;
    }

    .testimonial-2 {
        top: 25%;
        left: 1vw;
        max-width: 245px;
    }

    .testimonial-3 {
        bottom: 20%;
        right: 1vw;
        max-width: 245px;
    }

    /* .sign-testimonial .photo-details-container img{
        max-width: 50px;
        aspect-ratio:1/1;
    } */
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) and (max-width: 992px) {
    .sign-form {
        width: 65%;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        position: relative;
        top: 0;
        right: 0%;
        left: 0%;
        width: 65%;
        max-width: 350px;
        margin: auto;
        margin-top: 1rem;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) and (max-width: 768px) {
    .sign-form {
        width: 85%;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        position: relative;
        top: 0;
        right: 0%;
        left: 0%;
        width: 85%;
        max-width: 350px;
        margin: auto;
        margin-top: 1rem;
    }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .sign-form {
        width: 100%;
        padding: 1rem;
    }

    .hide-mobile {
        display: none;
    }

    .sign-label-input-container .col-8 input {
        max-width: 38vw;
    }

    .testimonial-1,
    .testimonial-2,
    .testimonial-3 {
        position: relative;
        top: 0;
        right: 0%;
        left: 0%;
        width: 100%;
        max-width: 350px;
        margin: auto;
        margin-top: 1rem;
    }

    .payment-method-container {
        gap: 5px;
    }
}

a.disabled {
    pointer-events: none;
    opacity: 0.6;
    text-decoration: none;
}

.newsletter-section {
    opacity: 0.5;
    pointer-events: none;
    user-select: none;
}


.sign-label-input-container span.generate-otp-btn {
    color: #0d6efd;
    font-family: Fira Sans;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1.2rem;
    margin: 0.5rem 0;
    cursor: pointer;
}

.password-eye {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0, -50%);
    cursor: pointer;
}