.div-champs {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 15px;
    margin: 20px 0;
}

.div-champs label {
    display: flex;
    align-items: center;
    margin-right: 5px;
    padding-left: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333;
}

.div-champs input {
    height: max-content;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.div-champs .input-error {
    border-color: var(--color-special);
}

.div-champs .input-error + label {
    color: var(--color-special);
}

.div-champs input[type="number"] {
    width: 80px;
}

.div-champs input[type="text"] {
    width: 200px;
}

.div-champs input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.div-champs > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0;
}

.input-poker, .input-tarot {
    text-transform: uppercase;
}

@media (max-width: 600px) {
    .div-champs {
        flex-direction: column;
    }

    .div-champs label,
    .div-champs input {
        width: 100%;
    }
}
