html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}


.bg-image {
    background-image: url('dummy/image-28.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.container-fluid {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
 .border-between {
            border-left: 2px solid #ccc;
            margin-left: 10px;
            padding-left: 10px;
        }
        .modal-header, .modal-footer {
            justify-content: center;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
        }
        .star {
            font-size: 1.5rem;
            cursor: pointer;
            color: lightgray;
        }
        .star.active {
            color: gold;
        }