/*Drivers Signup css Starts here*/

        body {
            background-color: #f7f7f7;
            font-family: 'Poppins', sans-serif;
        }

        .card {
            background: #ffffff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

        h4 {
            color: #333;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }

        .form-control {
            border-radius: 10px;
            padding: 15px;
            border: 2px solid #ccc;
            transition: all 0.3s ease-in-out;
        }

        .form-control:focus {
            border-color: #030303;
            box-shadow: 0 0 5px rgba(10, 10, 10, 0.7);
        }

        .form-label {
            font-weight: 500;
            margin-bottom: 8px;
        }

        .btn-primary {
            background-color: black;
            border: none;
            border-radius: 25px;
            padding: 12px 20px;
            font-weight: 600;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .btn-primary:hover {
            background-color: #faf9f5;
            color: #030303;
            border-color: #030303;
            box-shadow: 0 0 5px rgba(10, 10, 10, 0.7);
        }

        .alert {
            border-radius: 10px;
            font-size: 14px;
        }

        .mt-3 a {
            color: #030303;
            font-weight: 600;
            text-decoration: none;
        }

        /* Responsive Design Tweaks */
        @media (max-width: 576px) {
            .card {
                padding: 20px;
            }

            h4 {
                font-size: 22px;
                margin-bottom: 20px;
            }

            .form-control {
                padding: 12px;
            }

            .btn-primary {
                padding: 10px 16px;
                font-size: 14px;
            }

            .mt-3 a {
                font-size: 14px;
            }
        }

        @media (max-width: 768px) {
            .card {
                width: 90%;
            }

            .btn-primary {
                padding: 12px 20px;
            }
        }
        .password-icon {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }


/*Drivers Signup css Ends here*/