   .modal-content {
        background: #ffffff;
        border: none;
        overflow: hidden;
    }

    .modal-body {
        padding: 2rem 1.5rem;
    }

    .btn-primary {
        background: linear-gradient(90deg, #6a11cb, #2575fc);
        border: none;
        transition: all 0.3s ease;
    }

    .btn-primary:hover {
        background: linear-gradient(90deg, #2575fc, #6a11cb);
    }

    input.form-control {
        box-shadow: none;
        border: 1px solid #ddd;
        transition: all 0.3s ease;
    }

    input.form-control:focus {
        border-color: #2575fc;
        box-shadow: 0 0 8px rgba(37, 117, 252, 0.3);
    }