@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Manrope:wght@200..800&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
    --color-primary: #611378;
    --color-primary-hover: rgb(70, 33, 255);
    --color-primary-alt: rgb(94, 64, 240);
    --color-link: rgba(85, 86, 253, 1);
    --color-bg-light: rgba(249, 231, 243, 1);
    --color-border: rgba(237, 237, 237, 1);
    --color-border-dashed: #ccc;
    --color-text-dark: #333;
    --color-text-mid: #444;
    --color-text-muted: #777;
    --color-text-light: rgba(75, 75, 75, 1);
    --color-btn-bg: rgba(196, 196, 196, 1);
    --color-btn-text: #fff;
    --color-dot-inactive: #ffffff;
    --color-dot-active: rgba(17, 17, 17, 1);
    --color-overlay: #888;
    --color-white: #fff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
}

.bgpositionTop {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 550px;
    z-index: -1;
}

.bgpositionBottom {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 500px;
    z-index: -1;
}

.bgpositionTopRight {
    position: absolute;
    top: 0;
    right: 0;
    width: 370px;
    height: 370px;
    background: url("/assets/img/techsimpl_login/ts-bg-line.png") center/cover
        no-repeat;
    z-index: -1;
    display: none;
}

.bgpositionBottomMobile {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    background: url("/assets/img/techsimpl_login/ts-mobile-bg-bottom.png")
        center/cover no-repeat;
    z-index: -1;
    display: none;
}

.login-container {
    display: flex;
    align-items: center;
    width: 95%;
    height: 90vh;
    overflow: hidden;
}

.left-section {
    padding: 20px;
    width: 100%;
}

.logo-box {
    text-align: center;
    margin: 30px 0px;
}

.logo-box img {
    width: 200px;
    margin: 0 auto 10px;
}

.logoWhite {
    display: none;
}

.signin-box,
.forgetPass-box,
.changePass-box {
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: #00000040;
}

.signin-box h3 {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--color-text-dark);
}

.signin-box p {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 14px;
    font-weight: 400;
    display: block;
    margin-bottom: 6px;
    color: rgba(75, 75, 75, 1);
}

.form-group input {
    width: 100%;
    padding: 15px 40px;
    border-radius: 8px !important;
    border: none;
    font-size: 14px;
    height: 48px;
}

.pin-inputs input {
    height: 50px;
    background-color: #ffffff;
}

.input-icon {
    position: absolute;
    z-index: 10;
    top: 12px;
    left: 15px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #ffffff inset !important;
    box-shadow: 0 0 0 1000px #ffffff inset !important;
    -webkit-text-fill-color: #000 !important;
}

.form-group input:focus {
    outline: none;
    box-shadow: unset;
}

.form-group .input-group-text {
    background-color: rgba(250, 250, 250, 1);
    border: 1px solid var(--color-border);
}

.input-group {
    border: 1px solid var(--color-border);
    border-radius: 8px !important;
    background: var(--color-border);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.form-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--color-text-dark);
}

.form-options a {
    text-decoration: none;
    color: var(--color-link);
    font-weight: 400;
}

.btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: #0048fe;
    color: white;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.btn:hover {
    /* transform: scale(1.01) !important; */
    color: unset !important;
}


.btn:active {
    transform: scale(0.96);
}

.btn:focus {
    box-shadow: unset !important;
    background-color: #0048fe !important;
}

.btn-google {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background: var(--color-white);
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition-duration: 0.5s;
}

.btn-google:hover {
    background-color: #0043d30a;
}

.btn-google img {
    width: 20px;
}

.right-section {
    background: linear-gradient(
        135deg,
        rgba(0, 67, 211, 0.1) 0%,
        rgba(0, 105, 107, 0.14) 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 100vh;
}

.positionBgTopRight {
    position: absolute;
    top: 0;
    right: 0;
}

.positionBgTopRight img {
    border-radius: 72px;
}

.positionBgBottomRight {
    position: absolute;
    bottom: 0;
    right: 0;
}

.tsCardBg {
    position: relative;
}

.tsCardContent {
    position: absolute;
    top: 60px;
    left: 50px;
    width: 85%;
}

.tsCardContent_sub {
    font-size: 16px !important;
}

.tsCardBg .tsCardBgImg {
    height: 260px;
}

.slider-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    margin: 0 auto;
}

.slider {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.dots {
    text-align: center;
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 4px;
    background: var(--color-dot-inactive);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dots .active {
    background: var(--color-dot-active);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: rgba(75, 75, 75, 1);
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    height: 1px;
    margin: 40px 0;
    background: repeating-linear-gradient(
        to right,
        #a1c3db 0,
        #a1c3db 6px,
        #00000000 6px,
        transparent 12px
    );
}

.divider::before {
    mask-image: linear-gradient(
        to right,
        transparent,
        black 50%,
        black 100%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 50%,
        black 100%,
        transparent
    );
}

.divider::after {
    mask-image: linear-gradient(
        to right,
        transparent,
        black 0%,
        black 50%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 0%,
        black 50%,
        transparent
    );
}

.divider span {
    padding: 0 1em;
}

.right_sec_content {
    margin: 60px 0;
    position: relative;
}

.newTechtide_box {
    height: 100vh;
    display: flex;
    justify-content: center;
    flex-direction: row;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.newTechtide_btn {
    width: 285px;
    height: 40px;
    color: var(--color-white);
    background-color: var(--color-primary-alt);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    transition-duration: 0.5s;
}

.newTechtide_btn:hover {
    background-color: var(--color-primary-hover);
}

.newTechtide_content {
    width: 100%;
    flex-direction: column;
    align-items: start;
    gap: 100px;
    color: var(--color-white);
    background: linear-gradient(135deg, #eef3f8 0%, #dfe9f2 100%);
    position: relative;
    overflow: hidden;
}

.newTechtide_login {
    width: 800px;
    height: 100vh;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-white);
    border-radius: 5px;
}

.toggle-password-section {
    position: relative;
}

.cs-toggle-password {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    top: 12px;
    right: 15px;
    color: rgba(110, 110, 110, 1);
}

.cs-toggle-password img {
    opacity: 0.5;
}

.forgetPass-box .title,
.changePass-box .title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.forgetPass-box .boxcontent,
.changePass-box .boxcontent {
    width: 85%;
    margin: 0 auto 20px;
    font-size: 14px;
    color: var(--color-text-muted);
}

.backtologin_btn {
    text-align: center;
    margin: 10px 0;
}

.backtologin_btn a {
    text-decoration: none;
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 14px;
}

.ts_users {
    display: flex;
    margin-top: 25px;
    justify-content: end;
    margin-right: 30px;
}

.ts_user {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid #ffffff;
    margin-left: -10px;
    object-fit: cover;
}

.ts_user:first-child {
    margin-left: 0;
}

.remember-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0px;
}

.remember-label input {
    display: none;
}

.custom-checkbox {
    width: 16px;
    height: 16px;
    border: 1px solid rgba(224, 224, 224, 1);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    background-color: #ffffff;
}

.remember-label input:checked + .custom-checkbox::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0;
    width: 5px;
    height: 10px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.remember-label input:checked + .custom-checkbox {
    background-color: #0048fe !important;
}

.otp_input_box {
    width: 100%;
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #f8f9fa !important;
}

.form-control {
    color: #0f0f1e !important;
}

.techTide_right {
    position: relative;
    width: 90%;
    margin: 0 auto;
    height: 100%;
    padding: 80px;
    overflow: hidden;
}

.techTide_content {
    max-width: 380px;
    z-index: 2;
    position: absolute;
    top: 120px;
}

.techTide_badge {
    font-family: Manrope;
    font-weight: 800;
    font-size: 10px;
    line-height: 15px;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    width: 210px;
    height: 29px;
    border-radius: 12px;
    background: #0043d31a;
    border: 1px solid #0043d333;
    backdrop-filter: blur(12px);
    color: #0043d3;
    padding: 4px 8px;
}

.techTide_heading {
    font-family: Manrope;
    font-weight: 800;
    font-size: 60px;
    line-height: 63px;
    letter-spacing: -3px;
    color: #191c1e;
    margin: 14px 0;
}

.techTide_heading span {
    font-family: Manrope;
    font-weight: 800;
    font-size: 60px;
    line-height: 63px;
    letter-spacing: -3px;
    color: #0048fe;
}

.techTide_text {
    font-family: Manrope;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #434656;
}

.techTide_curve {
    position: absolute;
    width: 1000px;
    bottom: 90px;
}

.techTide_star1 {
    position: absolute;
    width: 50px;
    height: 64px;
    right: 20%;
    top: 50%;
}

.techTide_star2 {
    position: absolute;
    width: 27px;
    height: 35px;
    left: 20%;
    top: 80%;
}

.techTide_card {
    position: absolute;
    width: 260px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    font-size: 13px;
    color: #333;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    gap: 8px;
    overflow: hidden;
}

.techTide_card p {
    font-family: Manrope;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

.techTide_icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    padding: 10px;
}

.techTide_icon.col1 {
    background-color: #a46bf5;
}
.techTide_icon.col2 {
    background-color: #2fa037;
}
.techTide_icon.col3 {
    background-color: #01afb2;
}

.techTide_card_top {
    top: 70px;
    right: 140px;
    transform: rotate(-9.63deg);
    width: 460px;
    height: 320px;
    background: #be9efe4d;
    border: 3px solid #fbfbfb;
    box-shadow: 0px 20px 25px -5px #8f8f8f1a;
    border-radius: 32px;
    padding: 32px;
}

.techTide_card_left {
    bottom: 260px;
    left: 120px;
    transform: rotate(6.52deg);
    width: 460px;
    height: 200px;
    padding: 30px 40px;
    border-radius: 40px;
    background: #affdbd4d;
    border: 3px solid #ffffff;
}

.techTide_card_bottom {
    bottom: 70px;
    right: 270px;
    transform: rotate(-18deg);
    width: 350px;
    height: 190px;
    padding: 30px 40px;
    border-radius: 40px;
    background: #9afff84d;
    border: 3px solid #ffffff;
}

.white_line {
    height: 8px;
    border-radius: 12px;
    background: #ffffff;
    margin: 14px 0;
}

.white_line.line1 {
    width: 147px;
}
.white_line.line2 {
    width: 293px;
}
.white_line.line3 {
    width: 111px;
}

.card1_corner {
    position: absolute;
    width: 164px;
    height: 164px;
    top: -20px;
    right: -40px;
}

.card2_corner {
    position: absolute;
    width: 164px;
    height: 164px;
    top: -50px;
    right: -40px;
    transform: rotate(6deg);
}

.card3_corner {
    position: absolute;
    width: 164px;
    height: 164px;
    top: -60px;
    right: -40px;
    transform: rotate(45deg);
}

.newTechtide_content::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #0043d33d;
    filter: blur(100px);
    z-index: 0;
}

.newTechtide_box::after {
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: #0043d33d;
    filter: blur(100px);
    z-index: 0;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1400px) {
    .logo-ts img {
        width: 140px;
    }
    .tsCardBg .tsCardBgImg {
        height: 240px;
    }
    .tsCardContent {
        top: 40px;
    }
    .right_sec_content {
        margin: 40px 0;
    }
    .logo-box {
        margin: 10px !important;
    }
    .newTechtide_login {
        width: 512px !important;
    }
    .techTide_right {
        padding: 40px 0 !important;
    }
    .techTide_content {
        top: 70px !important;
    }
    .techTide_curve {
        width: 690px !important;
        bottom: 100px !important;
        left: 20px !important;
    }
    .techTide_card_top {
        width: 350px !important;
        height: 270px !important;
        top: 40px !important;
        right: 20px !important;
    }
    .techTide_card_left {
        width: 410px !important;
        height: 160px !important;
        bottom: 230px !important;
        left: 60px !important;
    }
    .techTide_card_bottom {
        width: 330px !important;
        height: 150px !important;
        bottom: 50px !important;
        right: 40px !important;
    }
}

@media (max-width: 1668px){
     .techTide_content {
        top: 70px !important;
    }
    .techTide_curve {
        width: 690px !important;
        bottom: 100px !important;
        left: 20px !important;
    }
    .techTide_card_top {
        width: 350px !important;
        height: 270px !important;
        top: 40px !important;
        right: 20px !important;
    }
    .techTide_card_left {
        width: 410px !important;
        height: 160px !important;
        bottom: 230px !important;
        left: 60px !important;
    }
    .techTide_card_bottom {
        width: 330px !important;
        height: 150px !important;
        bottom: 50px !important;
        right: 40px !important;
    }
}

@media (min-width: 1720px) and (max-width: 1736px) {
    .techTide_card_left{
        bottom: 16rem;
    }

    .techTide_card_bottom{
        right: 5rem;
    }
}

@media (min-width: 1401px) and (max-width: 1700px) {
    .logo-ts img {
        width: 150px;
    }
    .tsCardBg .tsCardBgImg {
        height: 260px;
    }
    .tsCardContent {
        top: 50px;
    }
    .right_sec_content {
        margin: 50px 0;
    }
    .logo-box {
        margin: 15px;
    }
    .newTechtide_login {
        width: 600px;
    }
    .techTide_right {
        padding: 50px 0;
    }
    .techTide_content {
        top: 90px;
        left: 30px;
    }
    .techTide_curve {
        width: 800px;
        bottom: 160px;
        left: 30px;
    }
    .techTide_card_top {
        width: 380px;
        height: 290px;
        top: 100px;
        right: 160px;
    }
    .techTide_card_left {
        width: 440px;
        height: 180px;
        bottom: 300px;
        left: 80px;
    }
    .techTide_card_bottom {
        width: 360px;
        height: 170px;
        bottom: 70px;
        right: 60px;
    }
}

@media (max-width: 1000px) {
    .bgpositionTop,
    .bgpositionBottom {
        display: none;
    }
    .newTechtide_box {
        padding: 0;
    }
    .newTechtide_content {
        display: none;
    }
    .newTechtide_login {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
    }
    .logo-box {
        margin: 20px 30px;
    }
    .newTechtide_message {
        width: 280px;
    }
    .logoDark {
        display: none;
    }
    .logoWhite {
        display: block;
    }
    .bgpositionTopRight {
        display: block;
    }
    .bgpositionBottomMobile {
        display: block;
    }
    .signin-box,
    .forgetPass-box,
    .changePass-box {
        background-color: white !important;
    }
    .newTechtide_box::before {
        content: "";
        position: absolute;
        top: -100px;
        left: -100px;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: #0043d33d;
        filter: blur(100px);
        z-index: -1;
    }
    .newTechtide_box::after {
        z-index: -1 !important;
    }
}

@media (max-width: 900px) {
    .login-container {
        flex-direction: column;
    }
    .left-section,
    .right-section {
        flex: none;
        width: 100%;
    }
    .signin-box,
    .forgetPass-box,
    .changePass-box {
        border: 1px solid #f6f8f9;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 480px) {
    .otp_input_box {
        width: 100%;
    }
    .signin-box,
    .forgetPass-box,
    .changePass-box {
        border: 1px solid #f6f8f9;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    }
}

@media screen and (max-width: 390px) {
    .signin-box h3 {
        font-size: 28px;
    }
    .logo-box img {
        width: unset;
    }
    .divider::before,
    .divider::after {
        margin: 20px 0 !important;
    }
    .signin-box,
    .forgetPass-box,
    .changePass-box {
        border: 1px solid #f6f8f9;
        box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.25);
    }
    .newTechtide_box {
        overflow-y: scroll !important;
    }
}

.signInBtn {
   height: 50px;
}
