.loginred{
    color:red;
}
.logingreen{
    color:green;
}
.auth-page {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 15px;
        }

        .auth-wrapper {
            width: 100%;
            max-width: 1050px;
            min-height: 620px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(15, 23, 42, .12);
        }

        /* LEFT PANEL */

        .auth-left {
            height: 100%;
            min-height: 620px;
            padding: 50px;
            background: #0f172a;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .auth-left::before {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border-radius: 50%;
            background: rgba(59, 130, 246, .12);
            top: -120px;
            right: -120px;
        }

        .auth-left::after {
            content: "";
            position: absolute;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(99, 102, 241, .10);
            bottom: -130px;
            left: -130px;
        }

        .logo {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 60px;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            border-radius: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            font-size: 21px;
            font-weight: 700;
            box-shadow: 0 6px 18px rgba(59, 130, 246, .3);
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
        }

        .logo-text span {
            color: #60a5fa;
        }

        .auth-left-content {
            position: relative;
            z-index: 1;
        }

        .auth-left h1 {
            font-size: 38px !important;
            font-weight: 700 !important;
            line-height: 1.15;
            margin-bottom: 18px;
            color:#fff !important;
        }

        .auth-left p {
            max-width: 420px;
            color: #94a3b8;
            font-size: 15px;
            line-height: 1.7;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 35px 0 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 17px;
            color: #cbd5e1;
            font-size: 14px;
        }

        .feature-icon {
            width: 28px;
            height: 28px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 7px;
            background: rgba(59, 130, 246, .15);
            color: #fff;
        }

        /* RIGHT PANEL */

        .auth-right {
            padding: 50px 55px;
        }

        .auth-title h2 {
            color: #111827;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .auth-title p {
            color: #6b7280;
            font-size: 14px;
        }
        input[type=text], input[type=tel], input[type=email]{
                    padding: 6px 16px;
            display: inline-block;
            border: 1px solid #ccc;
            border-radius: 4px;
            width: 100%;
            font-size: 14px;
            color: #000;
        }
        .form-label {
            color: #374151;
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-control {
            height: 48px;
            border: 1px solid #d1d5db;
            border-radius: 9px;
            font-size: 14px;
            padding: 0 15px;
        }

        .form-control:focus {
            border-color: #3b82f6;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, .10);
        }

        .password-wrapper {
            position: relative;
        }

        .password-wrapper .form-control {
            padding-right: 45px;
        }

        .password-toggle {
            position: absolute;
            top: 50%;
            right: 14px;
            transform: translateY(-50%);
            color: #9ca3af;
            cursor: pointer;
            font-size: 17px;
        }

        .form-check-label {
            color: #6b7280;
            font-size: 13px;
        }

        .form-check-input {
            accent-color: #3b82f6;
        }

        .forgot-link,
        .auth-link {
            color: #2563eb;
            text-decoration: none;
        }

        .forgot-link:hover,
        .auth-link:hover {
            text-decoration: underline;
        }

        .btn-auth {
            height: 48px;
            border: 0;
            border-radius: 9px;
            background: linear-gradient(135deg, #fb0272, #6366f1);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 6px 15px rgba(59, 130, 246, .22);
            transition: .25s;
        }

        .btn-auth:hover {
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 9px 20px rgba(59, 130, 246, .3);
        }

        .divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 25px 0;
            color: #9ca3af;
            font-size: 12px;
        }

        .divider::before,
        .divider::after {
            content: "";
            height: 1px;
            flex: 1;
            background: #e5e7eb;
        }

        .alert {
            font-size: 13px;
            border-radius: 8px;
        }
        .invalid-feedback { margin-top: 5px; font-size: 13px; } 
        .form-control.is-invalid { border-color: #dc3545; } 
        .form-control.is-invalid:focus { border-color: #dc3545; box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15); }
        @media (max-width: 767.98px) {
            .auth-page {
                padding: 15px;
            }

            .auth-wrapper {
                max-width: 500px;
            }

            .auth-right {
                padding: 40px 30px;
            }
        }

        @media (max-width: 400px) {
            .auth-right {
                padding: 30px 20px;
            }

            .auth-title h2 {
                font-size: 25px;
            }
        }