
    body {
        background-image: url('path_to_your_background_image.jpg');
        background-size: cover;
        background-position: center;
        height: 100vh;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-red {
        background-color: red;
        border-color: red;
        color: white;
    }

    h2 {
        color: red;
    }

    .btn-cancel {
        margin: 0 0 0 2rem !important;
        background: transparent;
        border: 1px solid red;
        color: red;
    }
