 body {
    background: url(../images/loginbg.jpg);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-size: 100%;
    	font-family: "Poppins", sans-serif;
}
  

        
        .login-container {
            position: relative;
            z-index: 10;
        }
        
        .login-card {
            background: white;
            border-radius: 24px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            border: none;
            padding: 2.5rem;
            max-width: 640px;
            width: 100%;
            margin: 0 auto;
            min-width: 604px;
        }
        
        .badge-container {
            text-align: center;
            margin-bottom: 1.5rem;
            position: relative;
            margin-top: -108px;
        }
        
        .made-in-india-badge {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            position: relative;
            border: 3px solid #e9ecef;
        }
        
        .badge-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: white;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        
        .badge-text-top {
            position: absolute;
            top: 15px;
            font-size: 10px;
            font-weight: 700;
            color: #333;
            letter-spacing: 1px;
        }
        
        .badge-text-bottom {
            position: absolute;
            bottom: 15px;
            font-size: 10px;
            font-weight: 700;
            color: #333;
            letter-spacing: 1px;
        }
        
        .badge-center {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }
        
        .india-flag {
            width: 30px;
            height: 20px;
            background: linear-gradient(to bottom, #ff9933 33.33%, white 33.33%, white 66.66%, #138808 66.66%);
            border-radius: 2px;
            margin-bottom: 5px;
            position: relative;
        }
        
        .india-flag::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%23000080' stroke-width='1'/%3E%3Cg stroke='%23000080' stroke-width='0.5'%3E%3Cline x1='12' y1='4' x2='12' y2='20'/%3E%3Cline x1='4' y1='12' x2='20' y2='12'/%3E%3C/g%3E%3C/svg%3E") center/contain no-repeat;
        }
        
        .india-text {
            color: #ff6b35;
            font-size: 16px;
            font-weight: bold;
        }
        
        .welcome-text {
            font-size: 30px;
            font-weight: 500;
            /* color: #333; */
            margin-bottom: 0.5rem;
            /* text-align: center; */
        }
        
        .subtitle {
            color: #0E0E0E;
            margin-bottom: 1rem;
            /* text-align: center; */
            font-size: 18px;
            font-weight: 500;
        }
        
        .phone-input-group {
            position: relative;
            margin-bottom: 1.5rem;
        }
        
        .country-dropdown2 {
            position: relative;
            width: 120px;
        }
        
        .country-select {
            background: white;
            border: 2px solid #E7E7E8;
            /* border-right: none; */
            padding: 0.75rem;
            border-radius: 6px;
            color: #495057;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            min-height: 50px;
            transition: all 0.3s ease;
        }
        
        .country-select:hover {
            background: #f8f9fa;
        }
        
        .country-select.active {
            border-color: #85b6fd;
            box-shadow: 0 0 0 0.1rem rgb(133, 182, 253, 0.4);
        }
        
            .selected-country {
                display: flex;
                align-items: center;
                gap: 0.5rem;
                width: 59px;
            }
        
        .country-flag {
            width: 24px;
            height: 16px;
            border-radius: 2px;
            object-fit: cover;
        }
        
        .dropdown2-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            max-height: 200px;
            overflow-y: auto;
            display: none;
            width: 200px;
        }
        
        .dropdown2-menu.show {
            display: block;
        }
        
        .dropdown2-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            cursor: pointer;
            transition: background 0.2s ease;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }
        
        .dropdown2-item:hover {
            background: #f8f9fa;
        }
        
        .dropdown2-item.selected {
            background: #e7f3ff;
            color: #0056b3;
        }
        
        .country-info {
            display: flex;
            /*! flex-direction: column; */
        }
        
        .country-name {
            font-size: 13px;
            font-weight: 500;
        }
        
        .country-code {
            font-size: 0.8rem;
            color: #6c757d;
        }
        
        .mobile-input {
            border: 2px solid #E7E7E8;
            /* border-left: none; */
            border-radius: 6px;
            padding: 0.75rem 1rem;
            font-size: 1rem;
            width: 100%;
            outline: none;
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .mobile-input:focus {
            border-color: #85b6fd;
            box-shadow: 0 0 0 0.2rem rgb(133, 182, 253,0.4);
        }
        
        .mobile-input::placeholder {
            color: #adb5bd;
        }
        
.continue-btn {
	background: linear-gradient(90deg,rgba(31, 217, 193, 1) 0%, rgba(62, 116, 216, 1) 100%);
	border: none;
	color: white;
	font-weight: 600;
	padding: 0.75rem 2rem;
	border-radius: 59px;
	font-size: 1rem;
	width: 100%;
	margin-bottom: 0;
	transition: all 0.3s ease;
	text-transform: uppercase;
	/* letter-spacing: 0.5px; */
}
        
        .continue-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 16px rgba(17, 17, 17, 0.3);
            background: linear-gradient(266deg,rgba(31, 217, 193, 1) 0%, rgba(62, 116, 216, 1) 100%);;
            color: #fff;
        }
        
        .divider {
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
            color: #1D1D1F;
            /*! font-size: 0.9rem; */
            font-weight: 500;
        }
        
        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #dee2e6;
            z-index: 1;
        }
        
        .divider span {
            background: white;
            padding: 0 1rem;
            position: relative;
            z-index: 2;
        }
        
        .google-btn {
            background: #F7F7F8;
            border: 1px solid #F7F7F8;
            color: #1D1D1F;
            font-weight: 500;
            padding: 13px;
            border-radius: 95px;
            /*! font-size: 1rem; */
            width: 100%;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            margin: 10px 0;
        }
        
        .google-btn:hover {
            /*! background: #f8f9fa; */
            border-color: #3D3D40;
            transform: translateY(-1px);
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .google-icon {
            width: 28px;
            height: 28px;
            background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%234285f4' d='M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z'/%3E%3Cpath fill='%2334a853' d='M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z'/%3E%3Cpath fill='%23fbbc05' d='M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z'/%3E%3Cpath fill='%23ea4335' d='M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z'/%3E%3C/svg%3E") center/contain no-repeat;
        }
        
        .otp-input {
            width: 46px;
            height: 46px;
            text-align: center;
            font-size: 18px;
            border: 1px solid #E6E9ED;
            border-radius: 4px;
            outline: none;
            transition: border-color 0.3s ease;
            }
            
            .otp-input:focus {
                    border-color: #85b6fd;
                    box-shadow: none;
                }
            
            .otp-container {
            display: flex;
            /*! justify-content: center; */
            gap: 9px;
            margin-bottom: 10px;
            }
            .color_1{color:#002C51;}
       .color_2{color:#8B3DFF;}
            .fw-300 {
                    font-weight: 300;
                }

                .fw-400 {
                    font-weight: 400 !important;
                }

                .fw-500 {
                    font-weight: 500;
                }

                .fw-600 {
                    font-weight: 600;
                }


        /* Responsive adjustments */
        @media (max-width: 576px) {
            .badge-container {margin-top: -97px; width: 100%;}

            .login-card {
                padding: 2rem 1.5rem;
                min-width: auto;
            }
.badge-container img {
	width: 285px;
}
            
            .welcome-text {
                font-size: 1.5rem;
            }
            
            .made-in-india-badge {
                width: 70px;
                height: 70px;
            }
            
            .made-in-india-badge::before,
            .made-in-india-badge::after {
                font-size: 7px;
            }
            .otp-input {width: 40px;height: 40px;}
            .otp-container {gap: 3px;}
        }
        
        @media (max-width: 400px) {          
            
            .country-code {
                border-radius: 8px;
                border-right: 1px solid #dee2e6;
                margin-bottom: -1px;
            }
            
            .mobile-input {
                border-radius: 8px;
                border-left: 1px solid #dee2e6;
            }
        }
        
        /* Animation for page load */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .login-card {
            animation: fadeInUp 0.6s ease-out;
        }