body {
    background-color: #E94E1B;
    /* Bright orange */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 15px;
    font-family: Arial, sans-serif;
}

.form-container {
    width: 100%;
    max-width: 420px;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.logos img {
    max-height: 70px;
    height: auto;
    object-fit: contain;
/*    margin-bottom: 40px;*/
}

.form-control,
.form-select {
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 16px;
    border: none;
    /*background-color: #E8DCCF;*/
    /* Beige inputs */
    color: #333;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    background-color: #f0e6da;
}

.btn-submit {
    border-radius: 5px;
    background-color: #000;
    /* Black button */
    border: none;
    padding: 12px;
    font-weight: bold;
    font-size: 16px;
    color: white;
}

.btn-submit:hover {
    background-color: #222;
    color:#fff
}
.btn-submit:active {
    background-color: #222;
    color:#fff
}
.consent-text {
    font-size: 13px;
    color: #fff;
}

.form-check-input {
    margin-top: 0.25rem;
}

@media (max-width: 576px) {

    .form-control,
    .form-select {
        font-size: 14px;
        padding: 10px 12px;
    }

    .btn-submit {
        font-size: 14px;
        padding: 10px;
    }
}


/*
body {
    background: #E94E1B;
    height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}*/

.wheel-container {
    position: relative;
    width: 360px;
    /* change to suit your layout */
    height: 360px;
}

.wheel-slices {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* NO transition here; JS will set transition dynamically */
    transform-origin: 50% 50%;
}

.wheel-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.btn-spin {
    margin-top: 18px;
    padding: 10px 36px;
    border-radius: 25px;
    background: #000;
    color: #fff;
    border: none;
}


.modal-title,
.modal-body {
    color: #000 !important
}
.error {
    color:#000;
    font-size: 10px;
}

input.my-error-class {
    border: 2px solid black;

}
label my-error-class {
    font-size:10px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color:#000 !important;
}

.form-check-input.is-valid~.form-check-label, .was-validated .form-check-input:valid~.form-check-label {
    color: #000 !important;
}

.form-check-input.is-invalid~.form-check-label, .was-validated .form-check-input:invalid~.form-check-label {
    color: #000 !important;
}