﻿/* Google font */
@import url('https://fonts.googleapis.com/css2?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');

/* font awesome  */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

a {
    text-decoration: none;
}

label {
    color: black;
}

.btn {
    padding: 15px 20px;
    background-color: #8C2AC4;
    border: 1px solid #8C2AC4;
    border-radius: 100px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

    .btn svg {
        width: 25px;
    }

    .btn:hover {
        color: #fff;
        background-color: #7622a8;
    }

    .btn:focus {
        box-shadow: none;
    }

    .btn:active {
        transform: scale(0.99, 0.98);
    }

.btn-outline {
    border: 1px solid #E81ECD;
    background: #fff;
    color: #000;
}

    .btn-outline:hover {
        color: #000;
        background: #fff;
    }

.create-main-wrapper-auth {
    width: 100%;
    height: 100vh;
    position: relative;
}

    .create-main-wrapper-auth::after,
    .create-main-wrapper-auth::before {
        content: '';
        position: absolute;
        z-index: 5;
        min-width: 40px;
        width: 4%;
        height: 160px;
        border-radius: 0 0px 0 0px;
    }

    .create-main-wrapper-auth::after {
        background-color: #E81ECD;
        top: 0;
        right: 0;
    }

    .create-main-wrapper-auth::before {
        background-color: #8C2AC4;
        bottom: 0;
        left: 0;
    }

.create-section {
    width: 100%;
    height: 100%;
  /*  background-image: url('../img/login-background.png');*/
    background-image: url('../../img/login-background.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

    .create-section::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(226.12deg, rgba(18, 18, 18, 0) 43.13%, #121212 96.74%);
        z-index: 1;
    }

    .create-section .container {
        height: 100%;
    }

.auth-row {
    position: relative;
    z-index: 10;
    align-items: stretch;
    height: 100%;
}

.create-auth-cover-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.auth-cover-bar {
    display: flex;
    flex-direction: column;
    color: #fff;
    padding: 0 0 0 3em;
    margin-left: 24px;
}

    .auth-cover-bar h2 {
        font-weight: 700;
        font-size: 2.4rem;
    }

        .auth-cover-bar h2 b {
            font-weight: 700;
            color: #E81ECD;
        }

        .auth-cover-bar h2 span {
            font-weight: 300;
        }

    .auth-cover-bar p {
        font-size: 1.3rem;
    }

    .auth-cover-bar .auth-cover-bar-btns {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        padding-bottom: 4em;
    }

.glass-btn-bar {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #FFFFFF36;
    border: 1px solid #FFFFFF4A;
    backdrop-filter: blur(24.600000381469727px);
    border-radius: 100px;
    gap: 0.25rem;
}

    .glass-btn-bar svg {
        fill: #37B99C;
        height: 20px;
    }

    .glass-btn-bar span {
        font-size: 0.8rem;
        font-weight: 500;
        color: #fff;
    }

.auth-form-wrapper {
    height: 100%;
    /* overflow-y: auto; */
    /* display: block; */
}

    .auth-form-wrapper::-webkit-scrollbar {
        display: none;
    }

.create-login-form {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    padding: 1rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-around;
}

    .create-login-form .form-logo {
        width: 40%;
    }

        .create-login-form .form-logo img {
            width: 100%;
        }

    .create-login-form .create-form-title {
        color: #000;
        display: flex;
        flex-direction: column;
      /*  gap: 0.8rem;*/
    }

        .create-login-form .create-form-title p {
            font-size: 0.9rem;
            margin: 0;
        }

            .create-login-form .create-form-title p span {
                color: #8C2AC4;
                font-weight: 700;
            }

        .create-login-form .create-form-title h6 {
            font-weight: 300;
            font-size: 2rem;
        }

        .create-login-form .create-form-title p {
            color: #999999;
            font-size: 12px;
            font-weight: 500;
        }

.leave-icon {
    width: 100%;
    display: flex;
    align-items: start;
}

    .leave-icon button {
        outline: none;
        border: none;
        background-color: transparent;
        font-size: 25px;
        color: #292D32;
        
    }

.create-login-form .create-form-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

    .create-login-form .create-form-inputs .create-input {
        display: flex;
        align-items: start;
        gap: 1em;
        flex-direction: column;
        position: relative;
    }

.name-bar {
    position: relative;
}

    .name-bar::before {
        content: "\F4E1";
        position: absolute;
        top: 10px;
        left: 14px;
        color: #999999;
        font-family: "bootstrap-icons";
        font-size: 20px;
    }

.name-bar {
    width: 100%;
}

.company-name {
    position: relative;
}

    .company-name::before {
        content: "\F87D";
        position: absolute;
        top: 10px;
        left: 14px;
        color: #999999;
        font-family: "bootstrap-icons";
        font-size: 20px;
    }

.company-name {
    width: 100%;
}

.form-input-btn-bar {
    position: relative;
}

    .form-input-btn-bar::before {
        content: "\F4E7";
        position: absolute;
        top: 10px;
        left: 14px;
        color: #999999;
        font-family: "bootstrap-icons";
        font-size: 20px;
    }

.form-input-btn-bar {
    width: 100%;
}

.input-btn-both-2 {
    position: relative;
}

    .input-btn-both-2::before {
        content: "\F32F";
        position: absolute;
        top: 10px;
        left: 14px;
        color: #999999;
        font-family: "bootstrap-icons";
        font-size: 20px;
    }

.input-btn-both-2 {
    width: 100%;
}

.gst-input {
    position: relative;
}

    .gst-input::before {
        content: "\F1EB";
        position: absolute;
        top: 10px;
        left: 14px;
        color: #999999;
        font-family: "bootstrap-icons";
        font-size: 20px;
    }

.gst-input {
    width: 100%;
}

.password-input {
    position: relative;
}

    .password-input::before {
        content: "\F330";
        position: absolute;
        top: 10px;
        left: 14px;
        color: #999999;
        font-family: "bootstrap-icons";
        font-size: 20px;
    }

.password-input {
    width: 100%;
}





.create-login-form .create-form-inputs .create-input svg {
    width: 20px;
    height: 20px;
    stroke: #000;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.create-login-form .create-form-inputs .create-input input {
    width: 100%;
    padding: 15px 20px 15px 40px;
    border-radius: 100px;
    border: 1px solid #E6E6E6;
    background-color: transparent;
    font-size: 0.9rem;
    position: relative;
}

.business-select {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}

    .business-select select {
        padding: 15px 50px 15px 40px;
        border-radius: 100px;
        border: 1px solid #E6E6E6;
        background-color: transparent;
        font-size: 0.9rem;
        color: #999999;
    }

.auth-cover-wrapper1.auth-form-wrapper1 {
    height: 100vh;
    overflow-y: auto;
}

    .auth-cover-wrapper1.auth-form-wrapper1.create-account {
        position: fixed;
        right: 0;
        top: 0;
    }


.create-login-form .create-form-inputs .create-input input::placeholder {
    color: #999;
}

.create-login-form .forgot-password {
    display: flex;
    justify-content: end;
    width: 100%;
}

    .create-login-form .forgot-password a {
        font-size: 0.9rem;
        font-weight: 500;
        color: #000;
    }

.create-login-form .form-or {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
}

    .create-login-form .form-or::after,
    .create-login-form .form-or::before {
        content: '';
        position: absolute;
        width: calc(50% - 20px);
        height: 1px;
        background-color: #E5E5E5;
        top: 50%;
        transform: translateY(-50%);
    }

    .create-login-form .form-or::after {
        left: 0;
    }

    .create-login-form .form-or::before {
        right: 0;
    }

    .create-login-form .form-or p {
        font-size: 0.9rem;
        font-weight: 500;
        margin: 0;
    }

.create-login-form .form-line {
    color: #000;
    text-align: center;
}

.create-form-title h6 span {
    color: #E81ECD;
    font-weight: 600;
}

.create-login-form .form-line p {
    font-size: 11px;
    display: flex;
    gap: 10px;
    align-items: center;
}

    .create-login-form .form-line p a {
        font-weight: 700;
        color: #0DA0E6;
    }

.form-input-btn-bar {
    position: relative;
}

.sent-btn {
    position: absolute;
    right: 0;
    background-color: #E81ECD;
    outline: none;
    color: #fff;
    border: none;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    top: 0;
    bottom: 0;
    padding: 10px 20px;
}

.form-input-btn-bar input {
    padding-right: 80px !important;
}

.input-btn-both {
    width: 100%;
}

.diff-select {
    appearance: none;
    padding-right: 30px;
    background: white;
    position: relative;
}

.business-select {
    position: relative;
}

    .business-select::after {
        content: "\F282";
        color: #999999;
        font-size: 14px;
        position: absolute;
        right: 30px;
        top: 50%;
        font-family: "bootstrap-icons";
        transform: translateY(-50%);
        pointer-events: none;
    }

@media screen and (max-width: 768px) {
    .create-login-form {
        height: 100% !important;
        overflow-y: unset;
        border-radius: 10px !important;
    }

    .auth-cover-bar {
        padding: 15px 0px !important;
        padding: 15px !important;
    }

    .create-login-form .create-form-inputs .create-input input {
        padding-left: 40px !important;
    }

    .auth-cover-bar h2 {
        text-align: center;
    }

    .auth-cover-bar p {
        text-align: center;
    }

    .auth-cover-bar .auth-cover-bar-btns {
        justify-content: center;
    }

    .auth-cover-bar p {
        text-align: center;
    }

    .create-login-form .create-form-title h6 {
        font-size: 20px !important;
        text-align: center;
    }
}

@media screen and (max-width:991px) and (min-width: 768px) {
    .auth-cover-bar {
        padding: 30px !important;
    }

    .create-login-form {
        border-radius: 10px !important;
    }
}

.create-login-form .form-line p {
    font-size: 11px;
}

/* Input box ke borders ko rounded aur smooth banane ke liye */
.custom-input-box {
    border-radius: 12px !important;
    border: 1px solid #e0e0e0 !important;
    padding: 12px 15px 12px 45px !important; /* Left padding icons ke liye */
    height: 55px;
    font-size: 15px;
}



    .input-with-icon i {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #9e9e9e;
        font-size: 18px;
        z-index: 10;
    }

    .input-with-icon svg {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #9e9e9e;
        font-size: 18px;
        z-index: 10;
    }
/* Password eye icon (right side) */
.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #9e9e9e;
}

/* Button Style */
.btn-create {
    background-color: #8a2be2 !important;
    border: none;
    border-radius: 50px !important;
    padding: 12px;
    font-weight: 600;
    }

/* Container ko relative rakhein */
.input-with-icon {
    position: relative;
    margin-bottom: 3px;
}

    /* Base style for all icons */
    .input-with-icon i {
        position: absolute;
        /* Input ki height 50px hai, toh 25px top se center karega */
        top: 25px;
        transform: translateY(-50%);
        color: #6c757d;
        font-size: 18px;
        z-index: 5;
    }

    /* Left side icon (Key, Person, etc.) */
    .input-with-icon .bi:not(.right-icon) {
        left: 12px;
        right: auto;
    }

    /* Right side icon (Eye toggle) */
    .input-with-icon .right-icon {
        right: 12px;
        left: auto;
        cursor: pointer;
    }

/* Input box padding adjust karein taaki text icon ke niche na dabe */
.custom-input-box {
    width: 100%;
    height: 50px;
    padding-left: 40px; /* Left icon ke liye */
    padding-right: 40px; /* Right icon ke liye */
    border-radius: 8px;
    border: 1px solid #ced4da;
}

/* Validation error fix: Taaki icon niche na khiske */
.text-danger {
    display: block;
    position: absolute; /* Error ko layout se bahar rakhein ya margin sahi karein */   
    font-size: 12px;
}
.title-header {
    font-family: Poppins;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0%;
    text-transform: capitalize;
    color: #121212;
}

.sub-title {
    font-family: Poppins;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE; 
    letter-spacing: 0%;
    color: #808080;
}


.already-account {
    font-weight: 500;
    font-style: Medium;
    font-size: 14px !important;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #535353;
}


.already-account-login {
    font-weight: 500;
    font-style: Medium;
    font-size: 14px !important;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    text-decoration: none;
    color: #8C2AC4;
}


.term-condition {
    font-family: Poppins;
    font-weight: 500;
    font-size: 11px !important;
    line-height: 100%;
    letter-spacing: 0%;
}

/* Select box se browser ka default arrow hatao taaki hamara icon dikhe */
select.custom-input-box {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

/* Dropdown icon ki position fix karein */
.input-with-icon .dropdown-icon {
    position: absolute;
    right: 15px; /* Right side se gap */
    top: 25px; /* Input box ka center */
    transform: translateY(-50%);
    pointer-events: none; /* Ispe click karne par bhi niche dropdown khule */
    font-size: 12px; /* Chota arrow achha lagta hai */
    color: #6c757d;
}


.forgot-password-link {
    color: #8C2AC4; /* Image madhla purple color */
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.2s ease;
}

    .forgot-password-link:hover {
        color: #6d28d9; /* Thoda dark shade hover var */
        text-decoration: underline;
    }

/* Jar tumhala link right side la pahije asel tar 'text-start' kadhun 'text-end' vapra */