
        * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


        body, html {
            height: 100%;
            font-family: 'Helvetica Neue', Arial, sans-serif;
            color: #333;
            line-height: 1.4;
            overflow-x: hidden;
        }
p {
    margin-top: 0;
    margin-bottom: 0.5rem;
}
p.terms_condition_error.error {
    font-size: 0.7rem !important;
}
        .sign-in-section {
            display: flex;
            min-height: 100vh;
            width: 100%;
            flex-direction: column;
        }

   .req-field {
    border-color: #dc3545 !important;
    box-shadow: 0 0 5px rgba(220, 53, 69, 0.5);
}

        .left-banner {
    flex: 1;
    background: linear-gradient(135deg, #006DF5 0%, #006DF5 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;

    /* NEW: Curved edge using clip-path */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);

}


        .left-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 109, 245, 0.2) 0%, transparent 70%);
            z-index: 0;
        }

        .left-banner > * {
            position: relative;
            z-index: 1;
        }

        .left-banner .logo-top {
            position: fixed;
            top: 10px;
            left: 10px;
            width: 60px;
            height: 40px !important;
            width: 140px !important;
        }

        .left-banner h1 {
        
            font-weight: 800;
            margin: 0 auto;
            max-width: 90%;
            letter-spacing: 1px;
        }

        .left-banner h1 span {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            font-weight: 600;
        }

        .user-form-container {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            /* padding: 15px; */
            background-color: #fff;
        }

        .form-wrapper {
            width: 100%;
            max-width: 500px;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: #ffffff;
            border: 1px solid #e0e0e0;
        }

        .form-title h2 {
            font-size: 1.2rem;
            font-weight: 700;
            color: #006DF5;
            margin-bottom: 10px;
            text-align: center;
        }

        .nav-tabs {
            border-bottom: 2px solid #e9ecef;
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
        }

        .nav-tabs .nav-item {
            flex: 1;
            text-align: center;
        }

        .nav-tabs .nav-link {
            font-size: 0.9rem;
            color: #6c757d;
            font-weight: 600;
            padding: 8px 10px;
            border: none;
            transition: all 0.3s ease;
            width: 100%;
            touch-action: manipulation;
        }

        .nav-tabs .nav-link.active {
            color: #006DF5;
            border: #006DF5 2px solid;
            background: none;
            font-weight: 700;
            border-radius: inherit;
        }

        .tab-pane {
            padding-top: 0;
        }

        .form-label {
            font-size: 0.85rem;
            font-weight: 600;
            color: #006DF5;
            margin-bottom: 0.5rem;
        }

        .form-control {
            font-size: 0.77rem;
            border: 2px solid #ced4da;
            border-radius: 8px;
            padding: 8px;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
            height: 38px;
            margin: 5px 0 0 0px;
        }

        .form-control:focus {
            border-color: #006DF5;
            box-shadow: 0 0 0 0.2rem rgba(0, 109, 245, 0.25);
        }

        .password-input {
            position: relative;
        }

        .password-input .form-control {
            padding-right: 40px;
        }

        .password-input .fa-eye, .password-input .fa-eye-slash {
            font-size: 0.85rem;
            position: absolute;
            right: 25px;
            top: 30%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #6c757d;
            transition: color 0.3s ease;
        }
        .fa-fw1 {
    text-align: center;
    width: 1.25em;
    top: 52% !important;
}
.col-12.password-input {
    margin: -15px 0 0 0;
}

        .password-input .fa-eye:hover, .password-input .fa-eye-slash:hover {
            color: #006DF5;
        }

        .btn-primary {
            font-size: 0.85rem;
            background-color: #006DF5;
            border: none;
            padding: 6px;
            font-weight: 600;
            border-radius: 8px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            width: 100%;
            text-transform: uppercase;
        }

        .btn-primary:hover {
            background-color: #0056d1;
            transform: translateY(-2px);
        }

        .btn-google {
            font-size: 0.85rem;
            background-color: #ffffff;
            border: 2px solid #006DF5;
            color: #006DF5;
            padding: 8px 15px;
            font-weight: 600;
            border-radius: 8px;
            transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            box-shadow: 0 2px 6px rgba(0, 109, 245, 0.1);
        }

        .btn-google:hover {
            background-color: #006DF5;
            color: #ffffff;
            border-color: #006DF5;
        }

        .btn-google i {
            color: #006DF5;
        }

        .btn-google:hover i {
            color: #ffffff;
        }

        .custom-phone-input {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
        }

        .custom-phone-input select {
            font-size: 0.85rem;
            flex: 0 0 80px;
            padding: 10px;
            border: 2px solid #ced4da;
            border-radius: 8px;
            background-color: #fff;
            cursor: pointer;
            height: 40px;
            width: 117px;
            margin: 12px 0 0 0;
        }
        .user-role {
            font-size: 0.85rem;
            flex: 0 0 80px;
            padding: 5px;
            border: 2px solid #ced4da;
            border-radius: 8px;
            background-color: #fff;
            cursor: pointer;
            height: 38px;
            width: 217px;
            margin: 5px 0 0 0;
        }

        .user-role:focus {
            border-color: #006DF5;
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0, 109, 245, 0.25);
        }

        .custom-phone-input select:focus {
            border-color: #006DF5;
            outline: none;
            box-shadow: 0 0 0 0.2rem rgba(0, 109, 245, 0.25);
        }

        .custom-phone-input input[type="tel"] {
            font-size: 0.85rem;
            flex: 1;
            padding: 10px;
            border: 2px solid #ced4da;
            border-radius: 8px;
            height: 40px;
        }

        .custom-phone-input input[type="tel"]:focus {
            border-color: #006DF5;
            box-shadow: 0 0 0 0.2rem rgba(0, 109, 245, 0.25);
        }

        .form-check-label {
            font-size: 0.7rem;
            font-weight: 500;
            color: #495057;
        }

        .form-check-input:checked {
            background-color: #006DF5;
            border-color: #006DF5;
        }

        /* Responsive Design */
        @media (min-width: 769px) {
            .sign-in-section {
                flex-direction: row;
            }

            .left-banner {
                flex: 1;
                min-height: 100vh;
                padding: 20px;
            }

            .left-banner .logo-top {
                width: 100px;
                top: 50px;
                left: 20px;
            }

           .left-banner h1 {
            text-align: left;
    font-size: 3rem;
    position: fixed;
    top: 45%;
    transform: translateY(-50%);
    /* margin-left: 230px; */
    color: white;
    padding-left: 40px; /* underline ke liye jagah */
    line-height: 1.2;
    width: fit-content;
}
            .left-banner h1 span {
                font-size: 1.2rem;
            }

            .user-form-container {
                padding: 20px;
            }

            .form-wrapper {
                padding: 20px;
            }

            .nav-tabs .nav-link {
                font-size: 0.85rem;
                padding: 10px 20px;
            }
        }

        @media (max-width: 768px) {
            .left-banner {
                min-height: 25vh;
                padding: 15px;
            }

            .left-banner .logo-top {
                width: 60px;
            }

            .left-banner h1 {
                font-size: 1.5rem;
            }

            .left-banner h1 span {
                font-size: 1rem;
            }

            .form-wrapper {
                max-width: 100%;
                padding: 15px;
            }

            .nav-tabs {
                flex-direction: row;
            }

            .nav-tabs .nav-link {
                font-size: 0.8rem;
                padding: 8px 10px;
            }
            

            .form-control, .custom-phone-input select, .custom-phone-input input[type="tel"] {
                font-size: 0.75rem !important;
                height: 35px;
            }
        }

        @media (max-width: 480px) {
            .left-banner {
                min-height: 20vh;
                padding: 10px;
            }

            .left-banner .logo-top {
                width: 50px;
            }

            .left-banner h1 {
                font-size: 1.2rem;
            }

            .left-banner h1 span {
                font-size: 0.9rem;
            }
            select#countryCode {
                margin: 12px 0 0 0 !important;
            }
            .form-wrapper {
                padding: 10px;
            }

            .nav-tabs {
                flex-direction: row;
                gap: 5px;
            }

            .nav-tabs .nav-link {
                font-size: 0.75rem;
                padding: 6px 8px;
            }

            .form-control, .custom-phone-input select, .custom-phone-input input[type="tel"] {
                font-size: 0.75rem;
                height: 32px;
            }

            .form-title h2 {
                font-size: 1rem;
            }

            .btn-primary, .btn-google {
                font-size: 0.75rem;
                padding: 8px;
            }
        }
        .top-header {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #00389C; /* blue */
  color: white;
  font-size: 13px;
  font-weight: 400;
  padding: 5px 0;
  z-index: 999; /* ensure it stays on top */
}

.contact-link {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-link:hover {
  text-decoration: underline;
}

.separator {
  color: white;
  margin: 0 10px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}
.close-top-header {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 15px;
  cursor: pointer;
  color: white;
  font-size: 18px;
}
.close-top-header:hover {
  color: #ccc;
}
i.fas.fa-phone-alt {
    transform: rotate(90deg);
}