
        .trial-wrapper {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 20px 0;
            background:
                radial-gradient(circle at top left, rgba(25, 42, 255, .15), transparent 30%),
                radial-gradient(circle at bottom right, rgba(25, 42, 255, .1), transparent 30%);
        }

        .trial-left {
            padding-right: 50px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 25px;
        }

        .logo-area img {
            width: 350px;
        }

        .logo-area h2 {
            margin: 0;
            font-size: 36px;
            font-weight: 700;
            color: #101010;
        }

        .trial-left h1 {
            font-size: 45px!important;
            font-weight: 800;
            color: #0816c8;
            line-height: 1.15;
            margin-bottom: 20px;
        }

        .trial-left p {
            font-size: 18px;
            color: #3a3838;
            margin-bottom: 35px;
        }

        .feature-box {
            display: flex;
            gap: 15px;
            margin-bottom: 22px;
            align-items: flex-start;
        }

        .feature-icon {
            width: 45px;
            height: 45px;
            background: #0816c8;
            color: #fff;
            border-radius: 12px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .feature-content h5 {
            margin-bottom: 4px;
            font-weight: 700;
        }

        .feature-content p {
            margin: 0;
            font-size: 16px;
        }

        .dashboard-preview {
            margin-top: 35px;
        }

        .dashboard-preview img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
        }

        .trial-card {
            background: #fff;
            padding: 45px;
            border-radius: 25px;
            box-shadow: 0 25px 70px rgba(0, 0, 0, .08);
            border: 1px solid #edf1ff;
        }

        .card-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .card-title h3 {
            font-size: 34px;
            font-weight: 700;
            color: #0816c8;
        }

        .card-title p {
            color: #777;
        }

        .form-label {
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-control {
            height: 56px;
            border-radius: 12px;
            border: 1px solid #dce2ff;
            padding-left: 15px;
        }

        .form-control:focus {
            border-color: #0816c8;
            box-shadow: 0 0 0 4px rgba(8, 22, 200, .08);
        }

        .submit-btn {
            width: 100%;
            height: 58px;
            border: none;
            border-radius: 12px;
            background: linear-gradient(135deg, #0816c8, #3048ff);
            color: #fff;
            font-size: 17px;
            font-weight: 600;
            margin-top: 15px;
            transition: .3s;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
        }

        .security-box {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin-top: 25px;
            color: #777;
            font-size: 14px;
        }

        .security-box i {
            color: #0816c8;
            margin-right: 5px;
        }

        .back-home {
            text-align: center;
            margin-top: 20px;
        }

        .back-home a {
            color: #0816c8;
            text-decoration: none;
            font-weight: 600;
        }

        @media(max-width:991px) {

            .trial-left {
                padding-right: 0;
                margin-bottom: 40px;
            }

            .trial-left h1 {
                font-size: 42px;
            }

            .trial-card {
                padding: 25px;
            }
        }
        .submit-btn:disabled{
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }